chore: release version v0.2.4

This commit is contained in:
Zach Daniel 2024-02-14 10:21:53 -05:00
parent 937fbcb9e6
commit 899d447a61
3 changed files with 13 additions and 2 deletions

View file

@ -5,6 +5,17 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.2.4](https://github.com/ash-project/ash_double_entry/compare/v0.2.3...v0.2.4) (2024-02-14)
### Bug Fixes:
* properly update future balances from destroys
* incorrect balance when adding transfer later (#12)
## [v0.2.3](https://github.com/ash-project/ash_double_entry/compare/v0.2.2...v0.2.3) (2023-12-23)

View file

@ -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.3"}
{:ash_double_entry, "~> 0.2.4"}
]
end
```

View file

@ -1,7 +1,7 @@
defmodule AshDoubleEntry.MixProject do
use Mix.Project
@version "0.2.3"
@version "0.2.4"
@description """
A customizable double entry bookkeeping system backed by Ash resources.
"""