chore: release version v0.2.0

This commit is contained in:
Zach Daniel 2024-02-20 14:09:17 -05:00
parent 3842cc65e1
commit 2b5a44e6b8
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.0](https://github.com/ash-project/ash_oban/compare/v0.1.14...v0.2.0) (2024-02-20)
### Breaking Changes:
* authorize always by default
### Improvements:
* allow turning new authorization behavior off
* add `actor_persister`, and use it automatically
* authorize?: true always
## [v0.1.14](https://github.com/ash-project/ash_oban/compare/v0.1.13...v0.1.14) (2024-02-16)

View file

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

View file

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