diff --git a/CHANGELOG.md b/CHANGELOG.md index 509e4ed..0432cb7 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_paper_trail/compare/v0.1.3...v0.1.4) (2024-07-10) + + + + +### Bug Fixes: + +* use `String.to_atom/1` instead of `to_existing_atom` + ## [v0.1.3](https://github.com/ash-project/ash_paper_trail/compare/v0.1.2...v0.1.3) (2024-07-10) diff --git a/documentation/tutorials/getting-started-with-ash-paper-trail.md b/documentation/tutorials/getting-started-with-ash-paper-trail.md index 29347d8..fd164d0 100644 --- a/documentation/tutorials/getting-started-with-ash-paper-trail.md +++ b/documentation/tutorials/getting-started-with-ash-paper-trail.md @@ -3,7 +3,7 @@ First, add the dependency to your `mix.exs` ```elixir -{:ash_paper_trail, "~> 0.1.3"} +{:ash_paper_trail, "~> 0.1.4"} ``` Then, add the `AshPaperTrail.Resource` extension to any resource you would like to version and configure the change tracking mode diff --git a/mix.exs b/mix.exs index 82b396e..6ecd1a2 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshPaperTrail.MixProject do use Mix.Project - @version "0.1.3" + @version "0.1.4" @description """ The extension for keeping an audit log of changes to your Ash resources.