From 0c0eb72b1becd4737d1abb28f77a358d942f09cf Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 5 Sep 2021 15:46:40 +0100 Subject: [PATCH] make-release: display the current and next version numbers --- build/make-release.php | 1 + 1 file changed, 1 insertion(+) diff --git a/build/make-release.php b/build/make-release.php index 361fa0c14..ec6bc2f01 100644 --- a/build/make-release.php +++ b/build/make-release.php @@ -81,6 +81,7 @@ function main(array $argv) : void{ $currentVer->getPatch() + 1 )); + echo "About to tag version $currentVer. Next version will be $nextVer.\n"; echo "please add appropriate notes to the changelog and press enter..."; fgets(STDIN); system('git add "' . dirname(__DIR__) . '/changelogs"');