From 302daaa45170669a8930fe0d8ff33d1c37b1b5f1 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 12 Dec 2023 10:14:49 -0500 Subject: [PATCH] chore: release version v0.1.12 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- documentation/tutorials/get-started-with-ash-oban.md | 2 +- mix.exs | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6525a..c859db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.12](https://github.com/ash-project/ash_oban/compare/v0.1.11...v0.1.12) (2023-12-12) + + + + +### Improvements: + +* make draining queues optional for `AshOban.schedule_and_run_triggers` + ## [v0.1.11](https://github.com/ash-project/ash_oban/compare/v0.1.10...v0.1.11) (2023-12-12) diff --git a/README.md b/README.md index 826166e..d56e461 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.11"} + {:ash_oban, "~> 0.1.12"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index e1d95be..a32cea6 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.11"} + {:ash_oban, "~> 0.1.12"} ] end ``` diff --git a/mix.exs b/mix.exs index aac9735..e388756 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.11" + @version "0.1.12" @description """ An Ash.Resource extension for integrating with Oban.