From a551c52394a710e42abc8d8c8736b206d2fc93a3 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Thu, 17 May 2018 09:58:18 +0200 Subject: [PATCH] More trickery --- CMakeLists.txt | 2 +- build/scripts/release_patch_version.sh | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 49f099b..320a7f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(breakhack C) set(breakhack_GAME_TITLE "BreakHack") set(breakhack_MAJOR_VERSION 0) set(breakhack_MINOR_VERSION 1) -set(breakhack_PATCH_VERSION 5) +set(breakhack_PATCH_VERSION 4) set(breakhack_RELEASE_TYPE "(early access)") include(FindLua) diff --git a/build/scripts/release_patch_version.sh b/build/scripts/release_patch_version.sh index aa4a0a2..41e78a5 100644 --- a/build/scripts/release_patch_version.sh +++ b/build/scripts/release_patch_version.sh @@ -10,8 +10,10 @@ git log --oneline early-access-v$LAST_VERSION..early-access-v$NEXT_VERSION > bui git add build/releasenotes/early-access-v$NEXT_VERSION git commit -a -m"Patch version raised to $NEXT_VERSION" +# Push to repo +git push + # Create the tag git tag early-access-v$NEXT_VERSION +git push early-access-v$NEXT_VERSION -# Push to repo -git push --follow-tags