From d4216704774c5c83a29b34a212ea2a2f7e4dfa55 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 3 May 2021 21:13:57 +0300 Subject: [PATCH] scripts/set_core_version.py: suggest using annotated tags According to `git help tag`, annotated tags are meant for releases. If tags are not annotated, `git describe` ignores them. --- scripts/set_core_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/set_core_version.py b/scripts/set_core_version.py index ac0f1afec..8a2df62d9 100644 --- a/scripts/set_core_version.py +++ b/scripts/set_core_version.py @@ -84,7 +84,7 @@ def main(): print("after commit, on master make sure to: ") print("") - print(" git tag {}".format(newversion)) + print(" git tag -a {}".format(newversion)) print(" git push origin {}".format(newversion)) print("")