Skip to content
Snippets Groups Projects
Commit c647ceb5 authored by Juhani Ränkimies's avatar Juhani Ränkimies
Browse files

feat(release note): add link to commit on breaking change #7

parent 60b12f22
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,8 @@ func fmtBreakingChanges(changes []*releaseEntry) string {
parts = append(parts, header(headerLevels[Major]+1, "Breaking changes"))
for _, change := range changes {
entryHead := header(headerLevels[Major]+2, change.subject)
headerText := fmt.Sprintf("%s (%s)", change.subject, change.commitSha)
entryHead := header(headerLevels[Major]+2, headerText)
parts = append(parts, entryHead, change.breakingMessage)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment