diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a67099..a9eb171 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.1](https://github.com/ash-project/ash_oban/compare/v0.1.0...v0.1.1) (2023-05-01) + + + + +### Bug Fixes: + +* add_error/1 does not exist + +* `insert_all/1` not `insert_all!/1` + +### Improvements: + +* handle actions w/ before_transaction/after_transaction hooks better + ## [v0.1.0](https://github.com/ash-project/ash_oban/compare/v0.1.0...v0.1.0) (2023-04-28) diff --git a/README.md b/README.md index 91ab88b..171e8f7 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.0"} + {:ash_oban, "~> 0.1.1"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 9506073..0b6f071 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.0"} + {:ash_oban, "~> 0.1.1"} ] end ``` diff --git a/mix.exs b/mix.exs index aa916c6..b58a09c 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.0" + @version "0.1.1" @description """ An Ash.Resource extension for integrating with Oban.