Skip to content

Commit bc452a3

Browse files
committed
Patch version raised to
1 parent 6811c42 commit bc452a3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/releasenotes/v1.1.1.txt renamed to build/releasenotes/v1.1.4.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
6811c42 Patch version raised to
12
e796fff Prepare release script for real versions
23
ae44d5c Adds minimal Steam fiddling protection
34
6e3343a License stuff and README updates

build/scripts/release_patch_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
MAJOR_VERSION=$(egrep -o 'breakhack_MAJOR_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}')
55
MINOR_VERSION=$(egrep -o 'breakhack_MINOR_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}')
66
LAST_PATCH_VERSION=$(egrep -o 'breakhack_PATCH_VERSION [0-9]+' CMakeLists.txt | awk '{print $2}')
7-
NEXT_PATCH_VERSION=$((LAST_VERSION + 1))
7+
NEXT_PATCH_VERSION=$((LAST_PATCH_VERSION + 1))
88

99
LAST_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$LAST_PATCH_VERSION
1010
NEXT_TAG=v$MAJOR_VERSION.$MINOR_VERSION.$NEXT_PATCH_VERSION

0 commit comments

Comments
 (0)