diff options
| author | Ross Nicoll <[email protected]> | 2014-04-29 00:58:51 +0100 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-04-29 00:58:51 +0100 |
| commit | c7080be8caaf44dc327b49df1b15c6af33f707ff (patch) | |
| tree | 6c34c905043b368d3ddd8f003d952e841983e7f7 | |
| parent | Renamed release notes to remove reference to alpha. (diff) | |
| download | discoin-c7080be8caaf44dc327b49df1b15c6af33f707ff.tar.xz discoin-c7080be8caaf44dc327b49df1b15c6af33f707ff.zip | |
Marked build as production read and removed beta tag in preparation for RC release.
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | src/version.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 22cc1ed28..88f151e30 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ define(_CLIENT_VERSION_MAJOR, 1) define(_CLIENT_VERSION_MINOR, 7) define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_IS_RELEASE, false) +define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2014) AC_INIT([Dogecoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[[email protected]],[dogecoin]) AC_CONFIG_AUX_DIR([src/build-aux]) diff --git a/src/version.cpp b/src/version.cpp index 3af8a2691..5c8c29d23 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -13,7 +13,7 @@ const std::string CLIENT_NAME("Shibetoshi"); // Client version number -#define CLIENT_VERSION_SUFFIX "-beta" +#define CLIENT_VERSION_SUFFIX "" // The following part of the code determines the CLIENT_BUILD variable. |