chore: release version v1.0.1

This commit is contained in:
Zach Daniel 2024-06-23 10:47:07 -04:00
parent 06f69efe6c
commit 3e03cf3abd
4 changed files with 19 additions and 4 deletions

View file

@ -1,2 +1,2 @@
erlang 26.2.2 erlang 27.0
elixir 1.16.1 elixir 1.17.0

View file

@ -5,6 +5,21 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [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) ## [v1.0.0](https://github.com/ash-project/ash_archival/compare/v1.0.0...v1.0.0) (2024-05-10)

View file

@ -5,7 +5,7 @@
First, add the dependency to your `mix.exs` file First, add the dependency to your `mix.exs` file
```elixir ```elixir
{:ash_archival, "~> 1.0.0"} {:ash_archival, "~> 1.0.1"}
``` ```
and add `:ash_archival` to your `.formatter.exs` and add `:ash_archival` to your `.formatter.exs`

View file

@ -1,7 +1,7 @@
defmodule AshArchival.MixProject do defmodule AshArchival.MixProject do
use Mix.Project use Mix.Project
@version "1.0.0" @version "1.0.1"
@description """ @description """
An Ash extension to implement archival (soft deletion) for resources. An Ash extension to implement archival (soft deletion) for resources.
""" """