chore: release version v0.2.1

This commit is contained in:
Zach Daniel 2023-12-10 13:16:36 -05:00
parent 16f8e21fd1
commit 142891e971
3 changed files with 19 additions and 2 deletions

View file

@ -5,6 +5,23 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog -->
## [v0.2.1](https://github.com/ash-project/ash_double_entry/compare/v0.2.0...v0.2.1) (2023-12-10)
### Bug Fixes:
* use Money..add! For correct return
* properly set context on account read in balance verification
### Improvements:
* support destroying transfers
* set `context_to_opts` when constructing the query
## [v0.2.0](https://github.com/ash-project/ash_double_entry/compare/v0.1.2...v0.2.0) (2023-12-06)

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.0"}
{:ash_double_entry, "~> 0.2.1"}
]
end
```

View file

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