Skip to content

Commit ad6ae48

Browse files
committed
build: Version bump to 0.9.99, disable IS_RELEASE
`master` is not a release. Use the same convention as before and label these intermediate builds as x.x.99.
1 parent aefbf6e commit ad6ae48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 0)
44
define(_CLIENT_VERSION_MINOR, 9)
5-
define(_CLIENT_VERSION_REVISION, 0)
5+
define(_CLIENT_VERSION_REVISION, 99)
66
define(_CLIENT_VERSION_BUILD, 0)
7-
define(_CLIENT_VERSION_IS_RELEASE, true)
7+
define(_CLIENT_VERSION_IS_RELEASE, false)
88
define(_COPYRIGHT_YEAR, 2014)
99
AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[[email protected]],[bitcoin])
1010
AC_CONFIG_AUX_DIR([src/build-aux])

src/clientversion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
#define CLIENT_VERSION_MAJOR 0
1313
#define CLIENT_VERSION_MINOR 9
1414
#define CLIENT_VERSION_REVISION 0
15-
#define CLIENT_VERSION_BUILD 0
15+
#define CLIENT_VERSION_BUILD 99
1616

1717
// Set to true for release, false for prerelease or test build
18-
#define CLIENT_VERSION_IS_RELEASE true
18+
#define CLIENT_VERSION_IS_RELEASE false
1919

2020
// Copyright year (2009-this)
2121
// Todo: update this when changing our copyright comments in the source

0 commit comments

Comments
 (0)