chore: release version v0.1.7

This commit is contained in:
Zach Daniel 2023-09-16 11:18:01 -04:00
parent f73cc6b452
commit a47253cbe3
4 changed files with 26 additions and 3 deletions

View file

@ -5,6 +5,29 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v0.1.7](https://github.com/ash-project/ash_oban/compare/v0.1.6...v0.1.7) (2023-09-16)
### Bug Fixes:
* don't schedule triggers with no scheduler
* make override job options optional (#8)
### Improvements:
* support providing an otp app to schedule and run triggers
* support apis/resources for ash_oban
* support overriding job opts in run_trigger (#7)
* support destroy actions in the trigger action
* debug logs
## [v0.1.6](https://github.com/ash-project/ash_oban/compare/v0.1.5...v0.1.6) (2023-08-29) ## [v0.1.6](https://github.com/ash-project/ash_oban/compare/v0.1.5...v0.1.6) (2023-08-29)

View file

@ -7,7 +7,7 @@ An oban extension for `Ash.Resource`
```elixir ```elixir
def deps do def deps do
[ [
{:ash_oban, "~> 0.1.6"} {:ash_oban, "~> 0.1.7"}
] ]
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.6"} {:ash_oban, "~> 0.1.7"}
] ]
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.6" @version "0.1.7"
@description """ @description """
An Ash.Resource extension for integrating with Oban. An Ash.Resource extension for integrating with Oban.