From 7d4b783676dc8ee037476e9cc52f91d3c22121b5 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Mon, 8 May 2023 14:49:59 -0400 Subject: [PATCH] chore: release version v0.1.2 --- 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 a9eb171..3a8a9db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.1.2](https://github.com/ash-project/ash_oban/compare/v0.1.1...v0.1.2) (2023-05-08) + + + + +### Improvements: + +* make scheduler default queue the same as worker + ## [v0.1.1](https://github.com/ash-project/ash_oban/compare/v0.1.0...v0.1.1) (2023-05-01) diff --git a/README.md b/README.md index 171e8f7..9eb75b5 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.1"} + {:ash_oban, "~> 0.1.2"} ] end ``` diff --git a/documentation/tutorials/get-started-with-ash-oban.md b/documentation/tutorials/get-started-with-ash-oban.md index 0b6f071..ba7c36c 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.1"} + {:ash_oban, "~> 0.1.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 06ceda6..39a577d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshOban.MixProject do use Mix.Project - @version "0.1.1" + @version "0.1.2" @description """ An Ash.Resource extension for integrating with Oban.