chore: release version v0.1.5

This commit is contained in:
Zach Daniel 2023-08-14 18:52:32 -07:00
parent 1286db7762
commit 76ede390d6
4 changed files with 32 additions and 3 deletions

View file

@ -5,6 +5,35 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.1.5](https://github.com/ash-project/ash_oban/compare/v0.1.4...v0.1.5) (2023-08-15)
### Bug Fixes:
* use same read_action in handle_error and in work
* another syntax issue with `drain_queue/2`
* drain_queue syntax issue
* Update base engine to support rename Oban.Pro.Engines.Smart
### Improvements:
* only invoke error handler on last attempt
* drain each queue twice
* add test helper for running triggers
* trigger_read_action, defaulting to read action
* read with primary read for trigger
* log error on scheduler failure
## [v0.1.4](https://github.com/ash-project/ash_oban/compare/v0.1.3...v0.1.4) (2023-06-10)

View file

@ -7,7 +7,7 @@ An oban extension for `Ash.Resource`
```elixir
def deps do
[
{:ash_oban, "~> 0.1.4"}
{:ash_oban, "~> 0.1.5"}
]
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.4"}
{:ash_oban, "~> 0.1.5"}
]
end
```

View file

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