From 73c0544ff30e6c3c8776c876d5204da923a7443a Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Sat, 13 Jul 2024 16:17:20 -0400 Subject: [PATCH] chore: release version v0.2.5 --- CHANGELOG.md | 9 +++++++++ .../tutorials/getting-started-with-ash-state-machine.md | 2 +- mix.exs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e1f99e5..ad6b774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.2.5](https://github.com/ash-project/ash_state_machine/compare/v0.2.4...v0.2.5) (2024-07-13) + + + + +### Improvements: + +* simplify atomic state transition with new ash feature + ## [v0.2.4](https://github.com/ash-project/ash_state_machine/compare/v0.2.3...v0.2.4) (2024-06-17) diff --git a/documentation/tutorials/getting-started-with-ash-state-machine.md b/documentation/tutorials/getting-started-with-ash-state-machine.md index a3ee4a5..ea5d273 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.4"} +{:ash_state_machine, "~> 0.2.5"} ``` ## Add the extension to your resource diff --git a/mix.exs b/mix.exs index b751869..410a40d 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshStateMachine.MixProject do use Mix.Project - @version "0.2.4" + @version "0.2.5" @description """ The extension for building state machines with Ash resources.