From 2ab61373d5bf4090cedc2387aeb20f97d05c5824 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 26 Dec 2024 12:20:19 -0500 Subject: [PATCH] build: include the new version number in the bump message --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 943d40ec4..5ece540ca 100644 --- a/Makefile +++ b/Makefile @@ -235,7 +235,7 @@ update_rtd: #: Update ReadTheDocs with the versions to show bump_version: #: Edit sources to bump the version after a release (see howto.txt). git switch -c nedbat/bump-version python igor.py bump_version - git commit -a -m "build: bump version" + git commit -a -m "build: bump version to $$(python setup.py --version | sed 's/a.*//')" git push -u origin @