From f17d117b289c0d45851b64a5ab0d8025d5f856ef Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Fri, 29 Mar 2024 18:01:17 -0400 Subject: [PATCH] chore: release version v0.2.3-rc.0 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- .../tutorials/get-started-with-state-machines.md | 2 +- mix.exs | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4aadd8..abc7aaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.3-rc.0](https://github.com/ash-project/ash_state_machine/compare/v0.2.2...v0.2.3-rc.0) (2024-03-29) + + + + +### Improvements: + +* update to Ash 3.0 + ## [v0.2.2](https://github.com/ash-project/ash_state_machine/compare/v0.2.1...v0.2.2) (2023-09-15) diff --git a/README.md b/README.md index 87115de..0c445a2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A state machine extension for `Ash.Resource` ```elixir def deps do [ - {:ash_state_machine, "~> 0.2.2"} + {:ash_state_machine, "~> 0.2.3-rc.0"} ] end ``` diff --git a/documentation/tutorials/get-started-with-state-machines.md b/documentation/tutorials/get-started-with-state-machines.md index 120917c..f4eeb90 100644 --- a/documentation/tutorials/get-started-with-state-machines.md +++ b/documentation/tutorials/get-started-with-state-machines.md @@ -10,7 +10,7 @@ If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/ def deps() [ ... - {:ash_state_machine, "~> 0.2.2"} + {:ash_state_machine, "~> 0.2.3-rc.0"} ] end ``` diff --git a/mix.exs b/mix.exs index be81d05..22b9cbf 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshStateMachine.MixProject do use Mix.Project - @version "0.2.2" + @version "0.2.3-rc.0" @description """ An Ash.Resource extension for building finite state machines