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