diff --git a/CHANGELOG.md b/CHANGELOG.md index c859db8..e6d0c68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.13](https://github.com/ash-project/ash_oban/compare/v0.1.12...v0.1.13) (2024-01-12) + + + + +### Bug Fixes: + +* Do not wrap `paused` and `delete` Cron options into `events` (#15) + +* properly honor the `drain_queues?` option + ## [v0.1.12](https://github.com/ash-project/ash_oban/compare/v0.1.11...v0.1.12) (2023-12-12) diff --git a/README.md b/README.md index d56e461..86c68a9 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.12"} + {:ash_oban, "~> 0.1.13"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index a32cea6..1e8e39f 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.12"} + {:ash_oban, "~> 0.1.13"} ] end ``` diff --git a/mix.exs b/mix.exs index d6fe8b3..f339326 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.12" + @version "0.1.13" @description """ An Ash.Resource extension for integrating with Oban.