From 3e03cf3abdcbd7a1e1fb07cdde192aeef10c8201 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Sun, 23 Jun 2024 10:47:07 -0400 Subject: [PATCH] chore: release version v1.0.1 --- .tool-versions | 4 ++-- CHANGELOG.md | 15 +++++++++++++++ .../tutorials/get-started-with-ash-archival.md | 2 +- mix.exs | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.tool-versions b/.tool-versions index b80e361..61c2916 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -erlang 26.2.2 -elixir 1.16.1 +erlang 27.0 +elixir 1.17.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 239c10a..9aab220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.0.1](https://github.com/ash-project/ash_archival/compare/v1.0.0...v1.0.1) (2024-06-23) + + + + +### Bug Fixes: + +* set `ash_archival` on the bulk destroy read query + +* ensure `ash_archival: true` is set on all destroy invocations + +### Improvements: + +* update ash for `atomic_upgrade_with` feature + ## [v1.0.0](https://github.com/ash-project/ash_archival/compare/v1.0.0...v1.0.0) (2024-05-10) diff --git a/documentation/tutorials/get-started-with-ash-archival.md b/documentation/tutorials/get-started-with-ash-archival.md index 11ed862..6dae810 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.0"} +{:ash_archival, "~> 1.0.1"} ``` and add `:ash_archival` to your `.formatter.exs` diff --git a/mix.exs b/mix.exs index c9e11af..1ca5dd7 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshArchival.MixProject do use Mix.Project - @version "1.0.0" + @version "1.0.1" @description """ An Ash extension to implement archival (soft deletion) for resources. """