diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-12 10:33:39 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-12 10:33:39 +0100 |
commit | be8ac71d962e0b6132c5ad7ef0ed27211c071ec9 (patch) | |
tree | 960dedb8bfdf69b23b961ed7a2dde40f517f3f17 | |
parent | 2f32a0b4abaf7444df2b0c4214ba63d6b9497fb2 (diff) |
Bump version to 0.9.4
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | doc/Doxyfile | 2 | ||||
-rw-r--r-- | doc/README.md | 4 | ||||
-rw-r--r-- | doc/README_windows.txt | 4 | ||||
-rw-r--r-- | src/clientversion.h | 4 |
6 files changed, 10 insertions, 10 deletions
@@ -3,7 +3,7 @@ Bitcoin Core integration/staging tree http://www.bitcoin.org -Copyright (c) 2009-2014 Bitcoin Core Developers +Copyright (c) 2009-2015 Bitcoin Core Developers What is Bitcoin? ---------------- diff --git a/configure.ac b/configure.ac index 7df52f6e77..ed68ca258c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,10 +2,10 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 9) -define(_CLIENT_VERSION_REVISION, 3) +define(_CLIENT_VERSION_REVISION, 4) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) -define(_COPYRIGHT_YEAR, 2014) +define(_COPYRIGHT_YEAR, 2015) AC_INIT([Bitcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@bitcoin.org],[bitcoin]) AC_CONFIG_AUX_DIR([src/build-aux]) AC_CONFIG_MACRO_DIR([src/m4]) diff --git a/doc/Doxyfile b/doc/Doxyfile index fb2fc07324..fa88d906fc 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -34,7 +34,7 @@ PROJECT_NAME = Bitcoin # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 0.9.3 +PROJECT_NUMBER = 0.9.4 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer diff --git a/doc/README.md b/doc/README.md index 1a19d9a01b..b33529f71a 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,7 +1,7 @@ -Bitcoin 0.9.3 BETA +Bitcoin 0.9.4 BETA ===================== -Copyright (c) 2009-2014 Bitcoin Developers +Copyright (c) 2009-2015 Bitcoin Developers Setup diff --git a/doc/README_windows.txt b/doc/README_windows.txt index a242052726..90da826d7e 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,6 +1,6 @@ -Bitcoin 0.9.3 BETA
+Bitcoin 0.9.4 BETA
-Copyright (c) 2009-2014 Bitcoin Core Developers
+Copyright (c) 2009-2015 Bitcoin Core Developers
Distributed under the MIT/X11 software license, see the accompanying
file COPYING or http://www.opensource.org/licenses/mit-license.php.
diff --git a/src/clientversion.h b/src/clientversion.h index ef184d8e05..10bb7ba2e3 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -11,7 +11,7 @@ // 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 3 +#define CLIENT_VERSION_REVISION 4 #define CLIENT_VERSION_BUILD 0 // Set to true for release, false for prerelease or test build @@ -19,7 +19,7 @@ // Copyright year (2009-this) // Todo: update this when changing our copyright comments in the source -#define COPYRIGHT_YEAR 2014 +#define COPYRIGHT_YEAR 2015 #endif //HAVE_CONFIG_H |