diff --git a/CHANGELOG.md b/CHANGELOG.md index e4d5043..f2b26c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.1.0](https://github.com/ash-project/ash_archival/compare/v1.0.4...v1.1.0) (2025-01-27) + + + + +### Features: + +* allow passing of arguments to related resources (#93) + +### Bug Fixes: + +* credo + ## [v1.0.4](https://github.com/ash-project/ash_archival/compare/v1.0.3...v1.0.4) (2024-10-07) diff --git a/documentation/tutorials/get-started-with-ash-archival.md b/documentation/tutorials/get-started-with-ash-archival.md index a426df6..cf3dfcc 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.4"} +{:ash_archival, "~> 1.1.0"} ``` and add `:ash_archival` to your `.formatter.exs` diff --git a/mix.exs b/mix.exs index 521b345..1bd27d5 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshArchival.MixProject do use Mix.Project - @version "1.0.4" + @version "1.1.0" @description """ An Ash extension to implement archival (soft deletion) for resources. """