chore: release version v0.2.0

This commit is contained in:
Zach Daniel 2023-12-05 20:01:24 -05:00
parent 764e7691ea
commit 2e9ec5570e
3 changed files with 23 additions and 2 deletions

View file

@ -5,6 +5,27 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v0.2.0](https://github.com/ash-project/ash_double_entry/compare/v0.1.2...v0.2.0) (2023-12-06)
### Features:
* use AshMoney
### Bug Fixes:
* ensure transformers run before `BelongsToAttribute`
* update ash for fix
### Improvements:
* migrate to AshMoney
* update ash
## [v0.1.2](https://github.com/ash-project/ash_double_entry/compare/v0.1.1...v0.1.2) (2023-08-19) ## [v0.1.2](https://github.com/ash-project/ash_double_entry/compare/v0.1.1...v0.1.2) (2023-08-19)
- Documentation updates & AshHq indexing fixes - Documentation updates & AshHq indexing fixes

View file

@ -12,7 +12,7 @@ The package can be installed by adding `ash_double_entry` to your list of depend
```elixir ```elixir
def deps do def deps do
[ [
{:ash_double_entry, "~> 0.1.2"} {:ash_double_entry, "~> 0.2.0"}
] ]
end end
``` ```

View file

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