Patch version raised to

This commit is contained in:
Linus Probert 2018-09-25 14:26:50 +02:00
parent 6811c42667
commit bc452a3fb6
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
6811c42 Patch version raised to
e796fff Prepare release script for real versions e796fff Prepare release script for real versions
ae44d5c Adds minimal Steam fiddling protection ae44d5c Adds minimal Steam fiddling protection
6e3343a License stuff and README updates 6e3343a License stuff and README updates

View File

@ -4,7 +4,7 @@
MAJOR_VERSION=$(egrep -o 'breakhack_MAJOR_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}') 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}') 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}') 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 LAST_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$LAST_PATCH_VERSION
NEXT_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$NEXT_PATCH_VERSION NEXT_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$NEXT_PATCH_VERSION