From 76ede390d6659eac711367e0e556f472d77c4eab Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Mon, 14 Aug 2023 18:52:32 -0700 Subject: [PATCH] chore: release version v0.1.5 --- CHANGELOG.md | 29 +++++++++++++++++++ README.md | 2 +- .../tutorials/get-started-with-ash-oban.md | 2 +- mix.exs | 2 +- 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c556e0e..bc49412 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,35 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [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) diff --git a/README.md b/README.md index 95331a8..73d3974 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.4"} + {:ash_oban, "~> 0.1.5"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 47699c2..06f0587 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.4"} + {:ash_oban, "~> 0.1.5"} ] end ``` diff --git a/mix.exs b/mix.exs index 161f70e..02b71c0 100644 --- a/mix.exs +++ b/mix.exs @@ -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.