diff --git a/CHANGELOG.md b/CHANGELOG.md index 55b565d..c556e0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.4](https://github.com/ash-project/ash_oban/compare/v0.1.3...v0.1.4) (2023-06-10) + + + + +### Improvements: + +* support `record_limit` to limit max processed records + ## [v0.1.3](https://github.com/ash-project/ash_oban/compare/v0.1.2...v0.1.3) (2023-05-18) diff --git a/README.md b/README.md index 5065f43..95331a8 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.3"} + {:ash_oban, "~> 0.1.4"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 9657e3a..47699c2 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.3"} + {:ash_oban, "~> 0.1.4"} ] end ``` diff --git a/mix.exs b/mix.exs index bd30497..161f70e 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.3" + @version "0.1.4" @description """ An Ash.Resource extension for integrating with Oban.