From 45c39b055b64c519801f4367d5c89237605410a5 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 5 Aug 2021 23:27:25 -1000 Subject: [PATCH] ;make: tag-project: also set a final .99 tag This will influence git describe and improve the version strings of dev builds. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index d902b4f2e..3308ddb15 100644 --- a/Makefile +++ b/Makefile @@ -878,6 +878,7 @@ tag-%: $(call def-help,tag-PKG, make a git release tag for PKG ) tag-project: $(call def-help,tag-project, make a git release tag for the project as a whole ) git tag -fs `cat .version` -m "Release `cat .version`, https://hledger.org/release-notes.html#hledger-`cat .version | sed -e 's/\./-/g'`" + @printf "please also adjust and run this command:\n git tag -fs `cat .version`.99 -m \"Start of next release cycle. This tag influences git describe and dev builds' version strings.\"\n" # hackageupload-dry: \ # $(call def-help,hackageupload-dry,\