diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a50575..fe7e530 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.0.3](https://github.com/ash-project/ash_archival/compare/v1.0.2...v1.0.3) (2024-08-16) + + + + +### Improvements: + +* deprecate exclude_upsert_actions, as it had unintended side effects + +* add `exclude_upsert_actions` configuration + ## [v1.0.2](https://github.com/ash-project/ash_archival/compare/v1.0.1...v1.0.2) (2024-07-11) diff --git a/documentation/tutorials/get-started-with-ash-archival.md b/documentation/tutorials/get-started-with-ash-archival.md index a7819b0..aaba9e6 100644 --- a/documentation/tutorials/get-started-with-ash-archival.md +++ b/documentation/tutorials/get-started-with-ash-archival.md @@ -5,7 +5,7 @@ First, add the dependency to your `mix.exs` file ```elixir -{:ash_archival, "~> 1.0.2"} +{:ash_archival, "~> 1.0.3"} ``` and add `:ash_archival` to your `.formatter.exs` diff --git a/mix.exs b/mix.exs index c68811e..2e732f9 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshArchival.MixProject do use Mix.Project - @version "1.0.2" + @version "1.0.3" @description """ An Ash extension to implement archival (soft deletion) for resources. """