diff --git a/CHANGELOG.md b/CHANGELOG.md index 0930c35..ba0693a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.3-rc.1](https://github.com/ash-project/ash_oban/compare/v0.2.3-rc.0...v0.2.3-rc.1) (2024-04-03) + + + + +### Bug Fixes: + +* use `skip_unknown_inputs` to avoid unnecessary errors + +* oban pro state active (#22) + +* detect oban pro plugin usage and support dynamic queues (#20) + ## [v0.2.3-rc.0](https://github.com/ash-project/ash_oban/compare/v0.2.2...v0.2.3-rc.0) (2024-03-29) diff --git a/README.md b/README.md index ba9e53d..09a8e4c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An oban extension for `Ash.Resource` ```elixir def deps do [ - {:ash_oban, "~> 0.2.3-rc.0"} + {:ash_oban, "~> 0.2.3-rc.1"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 5815530..d552595 100644 --- a/documentation/tutorials/get-started-with-ash-oban.md +++ b/documentation/tutorials/get-started-with-ash-oban.md @@ -18,7 +18,7 @@ Potential breaking change from `0.1.0` to `0.2.0`. See the section on Authorizat def deps() [ ... - {:ash_oban, "~> 0.2.3-rc.0"} + {:ash_oban, "~> 0.2.3-rc.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 01e35bb..c53f39a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.2.3-rc.0" + @version "0.2.3-rc.1" @description """ An Ash.Resource extension for integrating with Oban.