chore: Re-generate changelog
This commit is contained in:
parent
7eaf43a29a
commit
9fa89556d5
37
CHANGELOG.md
37
CHANGELOG.md
|
@ -8,4 +8,41 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
- *(devenv)* Fix version variable in release script
|
- *(devenv)* Fix version variable in release script
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- *(release)* Release v1.2.1
|
||||||
|
|
||||||
|
## [1.2.0] - 2024-03-08
|
||||||
|
|
||||||
|
### 🚀 Features
|
||||||
|
|
||||||
|
- Add context to GetToken endpoint
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- *(devenv)* Fix release changelog generation and commit message
|
||||||
|
|
||||||
|
### 🚜 Refactor
|
||||||
|
|
||||||
|
- Move GetToken method into auth client and rename auth client from Client to Auth
|
||||||
|
- Change api client to pass http client to auth client
|
||||||
|
|
||||||
|
### ⚙️ Miscellaneous Tasks
|
||||||
|
|
||||||
|
- Add git cliff for auto generated changelog
|
||||||
|
- *(devenv)* Add release script and rename changelog script to gen-changelog
|
||||||
|
- *(release)* Release
|
||||||
|
|
||||||
|
## [1.1.3] - 2024-03-08
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Create endpoint make utility to build endpoints
|
||||||
|
|
||||||
|
## [1.0.3] - 2024-03-07
|
||||||
|
|
||||||
|
### 🐛 Bug Fixes
|
||||||
|
|
||||||
|
- Use urlencoded body for get token request
|
||||||
|
|
||||||
<!-- generated by git-cliff -->
|
<!-- generated by git-cliff -->
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
gen-changelog.exec = "git cliff -o $CHANGELOG_FILE";
|
gen-changelog.exec = "git cliff -o $CHANGELOG_FILE";
|
||||||
release.exec = ''
|
release.exec = ''
|
||||||
version="$(git cliff --bumped-version)"
|
version="$(git cliff --bumped-version)"
|
||||||
git cliff --bump --unreleased -o $CHANGELOG_FILE
|
git cliff --bump --unreleased --prepend $CHANGELOG_FILE
|
||||||
git add $CHANGELOG_FILE
|
git add $CHANGELOG_FILE
|
||||||
git commit -m "chore(release): release $version"
|
git commit -m "chore(release): release $version"
|
||||||
git tag "$version" -m "Release $version"
|
git tag "$version" -m "Release $version"
|
||||||
|
|
Loading…
Reference in New Issue