From 2b5a44e6b847470ff330149ed4552f582a1b788f Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 20 Feb 2024 14:09:17 -0500 Subject: [PATCH] chore: release version v0.2.0 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- .../tutorials/get-started-with-ash-oban.md | 2 +- mix.exs | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f214913..ef4deda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [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) diff --git a/README.md b/README.md index e0cc045..dedec44 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 533c59f..59fff11 100644 --- a/documentation/tutorials/get-started-with-ash-oban.md +++ b/documentation/tutorials/get-started-with-ash-oban.md @@ -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 ``` diff --git a/mix.exs b/mix.exs index 11f598b..d812f66 100644 --- a/mix.exs +++ b/mix.exs @@ -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.