Skip to content

Commit

Permalink
Include release version in commit comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Wilcox committed May 23, 2017
1 parent 7f10df4 commit 73a3f7d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions zcutil/make-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,19 @@ def main_logged(release, releaseprev, releaseheight):
initialize_git(release)
patch_version_in_files(release, releaseprev)
patch_release_height(releaseheight)
commit('Versioning changes.')
commit('Versioning changes for {}.'.format(release.novtext))

build()
gen_manpages()
commit('Updated manpages.')
commit('Updated manpages for {}.'.format(release.novtext))

gen_release_notes(release)
update_debian_changelog(release)
commit('Updated release notes and changelog.')
commit(
'Updated release notes and changelog for {}.'.format(
release.novtext,
),
)


def phase(message):
Expand Down

0 comments on commit 73a3f7d

Please sign in to comment.