(newVersion: semver.SemVer)
| 10 | |
| 11 | /** Gets the commit message for a new release point in the project. */ |
| 12 | export function getCommitMessageForRelease(newVersion: semver.SemVer): string { |
| 13 | return `release: cut the v${newVersion} release`; |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Gets the commit message for an exceptional version bump in the next branch. The next |
no outgoing calls
no test coverage detected