From 74ee7510b2c50f022bb0bb613c07de4a47785634 Mon Sep 17 00:00:00 2001 From: Adrian Kumpf <8999358+adriankumpf@users.noreply.github.com> Date: Sat, 1 Jun 2024 14:45:19 +0200 Subject: [PATCH] Release 0.12.0 --- CHANGELOG.md | 4 ++++ README.md | 2 +- mix.exs | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5249a7a..753d6d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.12.0] - 2024-06-01 + +- Bump dependencies + ## [0.11.0] - 2024-03-02 - Require Elixir 1.13 diff --git a/README.md b/README.md index 2d7b125..e62148d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add `:arb` to your list of dependencies: ```elixir def deps do [ - {:arb, "~> 0.10"} + {:arb, "~> 0.12"} ] end ``` diff --git a/mix.exs b/mix.exs index fd93888..160e908 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Arb.MixProject do def project do [ app: :arb, - version: "0.11.0", + version: "0.12.0", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, compilers: Mix.compilers(), @@ -35,7 +35,7 @@ defmodule Arb.MixProject do files: [ "lib", "priv", - "native/arb/.cargo/config", + "native/arb/.cargo/config.toml", "native/arb/Cargo*", "native/arb/src", "mix.exs",