From c7f76f40e40b97a75816cb5df05ccc2dab74fa7e Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Mon, 1 Apr 2024 17:22:10 -0400 Subject: [PATCH] chore: release version v1.0.0-rc.0 --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 429e305..fea3198 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v1.0.0-rc.0](https://github.com/ash-project/ash_double_entry/compare/v0.2.4...v1.0.0-rc.0) (2024-04-01) +### Breaking Changes: + +* update to Ash 3.0 + + + +### Bug Fixes: + +* correct amount_delta calculation from destorying (#13) + ## [v0.2.4](https://github.com/ash-project/ash_double_entry/compare/v0.2.3...v0.2.4) (2024-02-14) diff --git a/README.md b/README.md index 76fc626..b65f865 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The package can be installed by adding `ash_double_entry` to your list of depend ```elixir def deps do [ - {:ash_double_entry, "~> 0.2.4"} + {:ash_double_entry, "~> 1.0.0-rc.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 25e2770..0d704e4 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule AshDoubleEntry.MixProject do use Mix.Project - @version "0.2.4" + @version "1.0.0-rc.0" @description """ A customizable double entry bookkeeping system backed by Ash resources. """