From bc452a3fb61cdd27c24e761741b9cafa07b3c5fb Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Tue, 25 Sep 2018 14:26:50 +0200 Subject: [PATCH] Patch version raised to --- build/releasenotes/{v1.1.1.txt => v1.1.4.txt} | 1 + build/scripts/release_patch_version.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename build/releasenotes/{v1.1.1.txt => v1.1.4.txt} (83%) diff --git a/build/releasenotes/v1.1.1.txt b/build/releasenotes/v1.1.4.txt similarity index 83% rename from build/releasenotes/v1.1.1.txt rename to build/releasenotes/v1.1.4.txt index 45bda60..1b0ad40 100644 --- a/build/releasenotes/v1.1.1.txt +++ b/build/releasenotes/v1.1.4.txt @@ -1,3 +1,4 @@ +6811c42 Patch version raised to e796fff Prepare release script for real versions ae44d5c Adds minimal Steam fiddling protection 6e3343a License stuff and README updates diff --git a/build/scripts/release_patch_version.sh b/build/scripts/release_patch_version.sh index 82ded79..5fb5d6f 100644 --- a/build/scripts/release_patch_version.sh +++ b/build/scripts/release_patch_version.sh @@ -4,7 +4,7 @@ MAJOR_VERSION=$(egrep -o 'breakhack_MAJOR_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}') MINOR_VERSION=$(egrep -o 'breakhack_MINOR_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}') LAST_PATCH_VERSION=$(egrep -o 'breakhack_PATCH_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}') -NEXT_PATCH_VERSION=$((LAST_VERSION + 1)) +NEXT_PATCH_VERSION=$((LAST_PATCH_VERSION + 1)) LAST_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$LAST_PATCH_VERSION NEXT_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$NEXT_PATCH_VERSION