From 673813fba388b6c692db41a1b81b3fcc58469502 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Wed, 28 Feb 2024 08:10:22 -0500 Subject: [PATCH] chore: release version v0.2.1 --- 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 ef4deda..16abb15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.1](https://github.com/ash-project/ash_oban/compare/v0.2.0...v0.2.1) (2024-02-28) + + + + +### Bug Fixes: + +* only drain queues when oban is in testing mode + +* properly discard all non applicable jobs + +### Improvements: + +* support `Oban.Pro.Testing.drain_jobs` + ## [v0.2.0](https://github.com/ash-project/ash_oban/compare/v0.1.14...v0.2.0) (2024-02-20) ### Breaking Changes: diff --git a/README.md b/README.md index dedec44..e20b69e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ An oban extension for `Ash.Resource` ```elixir def deps do [ - {:ash_oban, "~> 0.2.0"} + {:ash_oban, "~> 0.2.1"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 1ad17c0..a374b97 100644 --- a/documentation/tutorials/get-started-with-ash-oban.md +++ b/documentation/tutorials/get-started-with-ash-oban.md @@ -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.0"} + {:ash_oban, "~> 0.2.1"} ] end ``` diff --git a/mix.exs b/mix.exs index d812f66..41c973c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.2.0" + @version "0.2.1" @description """ An Ash.Resource extension for integrating with Oban.