Skip to content
This repository was archived by the owner on Feb 3, 2019. It is now read-only.

Commit 8f2f800

Browse files
committed
add 'stage' as version suffix and prepare for release
1 parent 3e3dbc8 commit 8f2f800

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ foreach h : ['wine/debug.h']
4242
endif
4343
endforeach
4444

45-
version = meson.project_version().split('.')
45+
version = meson.project_version().split('-')[0].split('.')
4646
wrc = [
4747
find_program('wrc'),
4848
'-DNINE_MAJOR=' + version[0],

tools/get_version.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ MAJOR=0
44
MINOR=1
55
BUILD=0
66
REVISION=`git rev-list --count HEAD 2>/dev/null || echo "0"`
7+
STAGE="release"
78

8-
echo -n "$MAJOR.$MINOR.$BUILD.$REVISION"
9+
echo -n "$MAJOR.$MINOR.$BUILD.$REVISION-$STAGE"
910

1011
exit 0

0 commit comments

Comments
 (0)