chore: release version v0.1.12

This commit is contained in:
Zach Daniel 2023-12-12 10:14:49 -05:00
parent 6031158019
commit 302daaa451
4 changed files with 12 additions and 3 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v0.1.12](https://github.com/ash-project/ash_oban/compare/v0.1.11...v0.1.12) (2023-12-12)
### Improvements:
* make draining queues optional for `AshOban.schedule_and_run_triggers`
## [v0.1.11](https://github.com/ash-project/ash_oban/compare/v0.1.10...v0.1.11) (2023-12-12) ## [v0.1.11](https://github.com/ash-project/ash_oban/compare/v0.1.10...v0.1.11) (2023-12-12)

View file

@ -7,7 +7,7 @@ An oban extension for `Ash.Resource`
```elixir ```elixir
def deps do def deps do
[ [
{:ash_oban, "~> 0.1.11"} {:ash_oban, "~> 0.1.12"}
] ]
end end
``` ```

View file

@ -14,7 +14,7 @@ If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/
def deps() def deps()
[ [
... ...
{:ash_oban, "~> 0.1.11"} {:ash_oban, "~> 0.1.12"}
] ]
end end
``` ```

View file

@ -1,7 +1,7 @@
defmodule AshOban.MixProject do defmodule AshOban.MixProject do
use Mix.Project use Mix.Project
@version "0.1.11" @version "0.1.12"
@description """ @description """
An Ash.Resource extension for integrating with Oban. An Ash.Resource extension for integrating with Oban.