diff --git a/CHANGELOG.md b/CHANGELOG.md index abc7aaf..0f4f3bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.3-rc.1](https://github.com/ash-project/ash_state_machine/compare/v0.2.3-rc.0...v0.2.3-rc.1) (2024-05-04) + + + + +### Improvements: + +* policy for including state machine in `can?` checks + +* optimize atomic state transition check + +* add atomic implementation + ## [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) diff --git a/documentation/tutorials/getting-started-with-ash-state-machine.md b/documentation/tutorials/getting-started-with-ash-state-machine.md index e53d3f4..5f2fbba 100644 --- a/documentation/tutorials/getting-started-with-ash-state-machine.md +++ b/documentation/tutorials/getting-started-with-ash-state-machine.md @@ -7,7 +7,7 @@ If you haven't already, read the [Ash Getting Started Guide](https://hexdocs.pm/ ## Bring in the ash_state_machine dependency ```elixir -{:ash_state_machine, "~> 0.2.3-rc.0"} +{:ash_state_machine, "~> 0.2.3-rc.1"} ``` ## Making a resource into a state machine diff --git a/mix.exs b/mix.exs index f16a734..91b9913 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshStateMachine.MixProject do use Mix.Project - @version "0.2.3-rc.0" + @version "0.2.3-rc.1" @description """ The extension for building state machines with Ash resources.