chore: release version v0.2.2

This commit is contained in:
Zach Daniel 2024-03-04 23:43:39 -05:00
parent 488131e5a8
commit a15acf77d3
4 changed files with 18 additions and 3 deletions

View file

@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.2.2](https://github.com/ash-project/ash_oban/compare/v0.2.1...v0.2.2) (2024-03-05)
### Bug Fixes:
* properly catch when trigger no longer applies
### Improvements:
* validate primary keys provided for job scheduling
* builds_trigger/3 to enable job composition without execution (#18)
## [v0.2.1](https://github.com/ash-project/ash_oban/compare/v0.2.0...v0.2.1) (2024-02-28)

View file

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

View file

@ -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.1"}
{:ash_oban, "~> 0.2.2"}
]
end
```

View file

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