From fe3f89cd07b875f103493d195085c8c7f7a8d5c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Sat, 3 Apr 2021 18:38:04 +0200 Subject: [PATCH] build: fix the tag recipe --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 8e34741..b25d2a4 100644 --- a/Makefile +++ b/Makefile @@ -30,12 +30,12 @@ changelog: @echo -e " When everything is good, finish the release with 'make tag'." tag: env - git add CHANGELOG.md kosmorrolib/version.py kosmorrolib/locales/messages.pot + git add CHANGELOG.md git commit -m "build: bump version $$RELEASE_NUMBER" git tag "v$$RELEASE_NUMBER" git checkout features - git merge master - git checkout master + git merge main + git checkout main @echo @echo -e "\e[1mVersion \e[36m$$RELEASE_NUMBER\e[39m successfully tagged!"