Skip to content

Commit

Permalink
Patch version raised to
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidityC committed Sep 25, 2018
1 parent 6811c42 commit bc452a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/release_patch_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bc452a3

Please sign in to comment.