Release v1.2.1 #1

Merged
efiordeliso merged 6 commits from dev into main 2024-03-08 13:45:28 -05:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 08f0281e98 - Show all commits

View File

@ -28,9 +28,9 @@
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)"
gen-changelog git cliff --bump --unreleased -o $CHANGELOG_FILE
git add $CHANGELOG_FILE git add $CHANGELOG_FILE
git commit -m "chore: Update changelog and bump version" git commit -m "chore(release): release $version"
git tag "$version" -m "Release $version" git tag "$version" -m "Release $version"
git push --tags git push --tags
''; '';