From 71d496951c8cdafbb9add22b45e19880dc34cb1e Mon Sep 17 00:00:00 2001 From: StakeBox Date: Tue, 27 Sep 2016 13:27:34 -0400 Subject: [PATCH] update version to 2.1.3.0 --- README.md | 2 +- configure.ac | 4 ++-- contrib/debian/manpages/darknetd.1 | 2 +- contrib/gitian-descriptors/gitian-linux.yml | 2 +- contrib/gitian-descriptors/gitian-osx.yml | 2 +- contrib/gitian-descriptors/gitian-rpi2.yml | 2 +- contrib/gitian-descriptors/gitian-win.yml | 2 +- doc/Doxyfile | 2 +- doc/README.md | 2 +- doc/README_windows.txt | 2 +- src/clientversion.h | 4 ++-- 11 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 85ae01a1dabb1..3586af2a623aa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -DarkNet Repository (Version 2.1.2.3) +DarkNet Repository (Version 2.1.3.0) More information at darknet-crypto.com Visit our ANN thread at bitcointalk.org/index.php?topic=1262920 diff --git a/configure.ac b/configure.ac index d4e4504ad61bf..c1ff64a787e0d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,8 +2,8 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 2) define(_CLIENT_VERSION_MINOR, 1) -define(_CLIENT_VERSION_REVISION, 2) -define(_CLIENT_VERSION_BUILD, 3) +define(_CLIENT_VERSION_REVISION, 3) +define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2016) AC_INIT([Darknet Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[www.darknet-crypto.com],[darknet]) diff --git a/contrib/debian/manpages/darknetd.1 b/contrib/debian/manpages/darknetd.1 index b02d57ac0e6af..51bc2535d1163 100644 --- a/contrib/debian/manpages/darknetd.1 +++ b/contrib/debian/manpages/darknetd.1 @@ -1,4 +1,4 @@ -.TH DNETD "1" "January 2016" "darknetd 2.1.2.3" +.TH DNETD "1" "January 2016" "darknetd 2.1.3.0" .SH NAME Darknet \- peer-to-peer network based digital currency .SH SYNOPSIS diff --git a/contrib/gitian-descriptors/gitian-linux.yml b/contrib/gitian-descriptors/gitian-linux.yml index 5756732424c04..65bb1feea77a9 100644 --- a/contrib/gitian-descriptors/gitian-linux.yml +++ b/contrib/gitian-descriptors/gitian-linux.yml @@ -1,5 +1,5 @@ --- -name: "darknet-linux-2.1.2.3" +name: "darknet-linux-2.1.3.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-osx.yml b/contrib/gitian-descriptors/gitian-osx.yml index 985e05f39b37c..5618f4f51b4b2 100644 --- a/contrib/gitian-descriptors/gitian-osx.yml +++ b/contrib/gitian-descriptors/gitian-osx.yml @@ -1,5 +1,5 @@ --- -name: "darknet-osx-2.1.2.3" +name: "darknet-osx-2.1.3.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-rpi2.yml b/contrib/gitian-descriptors/gitian-rpi2.yml index 21cb8c07558d5..f5f71408ff240 100644 --- a/contrib/gitian-descriptors/gitian-rpi2.yml +++ b/contrib/gitian-descriptors/gitian-rpi2.yml @@ -1,5 +1,5 @@ --- -name: "darknet-rpi2-2.1.2.3" +name: "darknet-rpi2-2.1.3.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 16481a8483278..33eb145beaac9 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -1,5 +1,5 @@ --- -name: "darknet-win-2.1.2.3" +name: "darknet-win-2.1.3.0" enable_cache: true suites: - "trusty" diff --git a/doc/Doxyfile b/doc/Doxyfile index 93016f3018195..181e8dbc9c879 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -34,7 +34,7 @@ PROJECT_NAME = Darknet # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.1.2.3 +PROJECT_NUMBER = 2.1.3.0 # 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 78a3ff4a5c181..44c841ba14f10 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,4 +1,4 @@ -DarkNet Core 2.1.2.3 +DarkNet Core 2.1.3.0 ===================== Setup diff --git a/doc/README_windows.txt b/doc/README_windows.txt index fbe5839b6b9ea..4e2f93998a7a9 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -DarkNet Core 2.1.2.3 +DarkNet Core 2.1.3.0 ===================== Intro diff --git a/src/clientversion.h b/src/clientversion.h index 7d0b3a9bf3ad5..0cee9e71d21d5 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -16,8 +16,8 @@ //! These need to be macros, as clientversion.cpp's and darknet*-res.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 2 #define CLIENT_VERSION_MINOR 1 -#define CLIENT_VERSION_REVISION 2 -#define CLIENT_VERSION_BUILD 3 +#define CLIENT_VERSION_REVISION 3 +#define CLIENT_VERSION_BUILD 0 //! Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true