chore: update changelog

This commit is contained in:
Zach Daniel 2023-11-27 11:25:46 -05:00
parent 1504617fe5
commit b7795a977c
2 changed files with 20 additions and 0 deletions

View file

@ -7,5 +7,7 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
## [v0.1.0](https://github.com/ash-project/ash_money/compare/v0.1.0...v0.1.0) (2023-11-27) ## [v0.1.0](https://github.com/ash-project/ash_money/compare/v0.1.0...v0.1.0) (2023-11-27)
* Initial Release

18
config/config.exs Normal file
View file

@ -0,0 +1,18 @@
import Config
if Mix.env() == :dev do
config :git_ops,
mix_project: AshMoney.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_money",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: [
"README.md",
"documentation/tutorials/get-started-with-ash-money.md"
],
version_tag_prefix: "v"
end