diff --git a/CHANGELOG.md b/CHANGELOG.md index bc49412..3a0c1fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.6](https://github.com/ash-project/ash_oban/compare/v0.1.5...v0.1.6) (2023-08-29) + + + + +### Bug Fixes: + +* verify trigger action exists in transformer + +### Improvements: + +* use read_metadata when manually scheduling + +* allow `false` as the value for `scheduler_cron` + +* add worker/scheduler priorities + ## [v0.1.5](https://github.com/ash-project/ash_oban/compare/v0.1.4...v0.1.5) (2023-08-15) diff --git a/README.md b/README.md index 73d3974..156c752 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An oban extension for `Ash.Resource` ```elixir def deps do [ - {:ash_oban, "~> 0.1.5"} + {:ash_oban, "~> 0.1.6"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 06f0587..ba9dc44 100644 --- a/documentation/tutorials/get-started-with-ash-oban.md +++ b/documentation/tutorials/get-started-with-ash-oban.md @@ -14,7 +14,7 @@ If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/ def deps() [ ... - {:ash_oban, "~> 0.1.5"} + {:ash_oban, "~> 0.1.6"} ] end ``` diff --git a/mix.exs b/mix.exs index 02b71c0..c0768ec 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.5" + @version "0.1.6" @description """ An Ash.Resource extension for integrating with Oban.