From e538ff47d08efaf3a95a3d3896acebd5beddff9d Mon Sep 17 00:00:00 2001 From: Adrian Kumpf <8999358+adriankumpf@users.noreply.github.com> Date: Thu, 25 May 2023 22:15:56 +0200 Subject: [PATCH] Release 0.10.0 --- CHANGELOG.md | 8 +++++++- README.md | 2 +- mix.exs | 2 +- native/arb/Cargo.lock | 12 ++++++------ 4 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4350174..23413ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [0.10.0] - 2023-05-25 + +- Add support for OTP 26 +- Require Elixir 1.12 + ## [0.9.0] - 2022-08-19 ### Breaking changes @@ -115,7 +120,8 @@ ## [0.1.0] - 2018-03-31 -[unreleased]: https://github.com/adriankumpf/arb-ex/compare/v0.9.0...HEAD +[unreleased]: https://github.com/adriankumpf/arb-ex/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/adriankumpf/arb-ex/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/adriankumpf/arb-ex/compare/v0.8.1...v0.9.0 [0.8.1]: https://github.com/adriankumpf/arb-ex/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/adriankumpf/arb-ex/compare/v0.7.0...v0.8.0 diff --git a/README.md b/README.md index 7c3fdcf..2d7b125 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add `:arb` to your list of dependencies: ```elixir def deps do [ - {:arb, "~> 0.9"} + {:arb, "~> 0.10"} ] end ``` diff --git a/mix.exs b/mix.exs index c6b6049..df8e72b 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Arb.MixProject do def project do [ app: :arb, - version: "0.9.0", + version: "0.10.0", elixir: "~> 1.12", start_permanent: Mix.env() == :prod, compilers: Mix.compilers(), diff --git a/native/arb/Cargo.lock b/native/arb/Cargo.lock index 5acdcf7..45a69dc 100644 --- a/native/arb/Cargo.lock +++ b/native/arb/Cargo.lock @@ -97,9 +97,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.8.1" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" +checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" dependencies = [ "aho-corasick", "memchr", @@ -108,9 +108,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" +checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" [[package]] name = "rusb" @@ -188,9 +188,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.8" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4" +checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" [[package]] name = "unreachable"