diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a1be04..ea72710 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v0.3.0](https://github.com/ash-project/ash_paper_trail/compare/v0.2.1...v0.3.0) (2024-09-20) + + + + +### Features: + +* Add ability to ignore sensitive attributes. (#117) + +* Add support for redacting sensitive attributes from versions. (#116) + ## [v0.2.1](https://github.com/ash-project/ash_paper_trail/compare/v0.2.0...v0.2.1) (2024-09-16) diff --git a/documentation/tutorials/getting-started-with-ash-paper-trail.md b/documentation/tutorials/getting-started-with-ash-paper-trail.md index 5629752..b997588 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.2.1"} +{:ash_paper_trail, "~> 0.3.0"} ``` 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 2ba5790..286111a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshPaperTrail.MixProject do use Mix.Project - @version "0.2.1" + @version "0.3.0" @description """ The extension for keeping an audit log of changes to your Ash resources.