Patch version raised to
This commit is contained in:
parent
6811c42667
commit
bc452a3fb6
|
@ -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
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue