diff options
author | Warren Togami <wtogami@gmail.com> | 2014-04-12 14:06:07 -1000 |
---|---|---|
committer | Warren Togami <wtogami@gmail.com> | 2014-04-15 21:48:44 -1000 |
commit | 3d20cd5f61fff33fe5fffd6efddf2c942c8dd2f9 (patch) | |
tree | 6e3c302e70bc8ce063d473448ae40895aa62f7da /src/clientversion.h | |
parent | 74dd52a9fc13851a6ec847da985388a6bfb70be7 (diff) |
VERSION obtained from source instead of the previous git tag.
Drawback: The version string is no longer a valid git identifier.
For this reason the 'g' short hash prefix has been removed.
Exception: When building directly from a tag this behaves exactly like the previous behavior.
This allows formatting release versions with precision i.e. v0.9.2
This also allows arbitrary topicbranch names i.e. v0.9.1-glibc-compat
Diffstat (limited to 'src/clientversion.h')
-rw-r--r-- | src/clientversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clientversion.h b/src/clientversion.h index 8d0f89c715..29b4aa3764 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -11,8 +11,8 @@ // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 9 -#define CLIENT_VERSION_REVISION 0 -#define CLIENT_VERSION_BUILD 99 +#define CLIENT_VERSION_REVISION 99 +#define CLIENT_VERSION_BUILD 0 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE false |