chore: release version v0.1.6

This commit is contained in:
Zach Daniel 2023-08-29 19:19:02 -04:00
parent 07a35b48f5
commit 5214c7f296
4 changed files with 20 additions and 3 deletions

View file

@ -5,6 +5,23 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [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)

View file

@ -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
```

View file

@ -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
```

View file

@ -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.