Skip to content

Commit

Permalink
Tag message now has the v{{version}}\n\n{changes} format, as workar…
Browse files Browse the repository at this point in the history
…ound for cli/cli#9299
  • Loading branch information
nedtwigg committed Aug 4, 2024
1 parent 21c7209 commit a5254b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@

# Changelog
## [Unreleased]
### Changed
- Tag message now has the `v{{version}}\n\n{changes}` format, as workaround for [cli/cli#9299](https://github.com/cli/cli/issues/9299).

## [8.0.0] - 2024-07-08
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/base/changelog.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (tasks.names.contains('changelogCheck')) {
spotlessChangelog {
branch 'release'
appendDashSnapshotUnless_dashPrelease = true
tagMessage '{{changes}}'
tagMessage 'v{{version}}\n\n{{changes}}'
runAfterPush "gh release create release/{{version}} --title 'v{{version}}' --notes-from-tag"
}
// set the project version for POM, jar manifest, etc.
Expand Down

0 comments on commit a5254b3

Please sign in to comment.