From 9ff6bc6b56287cea5bb1b48f4a91fcd97b737c46 Mon Sep 17 00:00:00 2001 From: Adrian Kumpf <8999358+adriankumpf@users.noreply.github.com> Date: Fri, 19 Aug 2022 18:51:20 +0200 Subject: [PATCH] Release 0.9.0 --- CHANGELOG.md | 9 ++++++++- README.md | 2 +- mix.exs | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce4c6ea..4350174 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.9.0] - 2022-08-19 + +### Breaking changes + +- All `:error` tuples now contain an `Arb.Error` exception struct + ## [0.8.1] - 2022-04-29 - Update dependencies @@ -109,7 +115,8 @@ ## [0.1.0] - 2018-03-31 -[unreleased]: https://github.com/adriankumpf/arb-ex/compare/v0.8.1...HEAD +[unreleased]: https://github.com/adriankumpf/arb-ex/compare/v0.9.0...HEAD +[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 [0.7.0]: https://github.com/adriankumpf/arb-ex/compare/v0.6.0...v0.7.0 diff --git a/README.md b/README.md index 3b83242..bbe98bc 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Add `:arb` to your list of dependencies: ```elixir def deps do [ - {:arb, "~> 0.8"} + {:arb, "~> 0.9"} ] end ``` diff --git a/mix.exs b/mix.exs index 862c6da..b2ee335 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Arb.MixProject do def project do [ app: :arb, - version: "0.8.1", + version: "0.9.0", elixir: "~> 1.6", start_permanent: Mix.env() == :prod, compilers: Mix.compilers(),