diff --git a/README.md b/README.md index 3c5c02db7e6c0..bca0a1d392f2d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -DarkNet Repository (Version 2.0.1.0) +DarkNet Repository (Version 2.0.2.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 a028b0ca0dfcd..2b15547ecd886 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 2) define(_CLIENT_VERSION_MINOR, 0) -define(_CLIENT_VERSION_REVISION, 1) +define(_CLIENT_VERSION_REVISION, 2) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2016) diff --git a/contrib/debian/manpages/darknetd.1 b/contrib/debian/manpages/darknetd.1 index 047363e8170d6..cfc860996a1ac 100644 --- a/contrib/debian/manpages/darknetd.1 +++ b/contrib/debian/manpages/darknetd.1 @@ -1,4 +1,4 @@ -.TH DNETD "1" "January 2016" "darknetd 2.0.1.0" +.TH DNETD "1" "January 2016" "darknetd 2.0.2.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 683bc42a78928..3da0771bc9552 100644 --- a/contrib/gitian-descriptors/gitian-linux.yml +++ b/contrib/gitian-descriptors/gitian-linux.yml @@ -1,5 +1,5 @@ --- -name: "darknet-linux-2.0.1.0" +name: "darknet-linux-2.0.2.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-osx.yml b/contrib/gitian-descriptors/gitian-osx.yml index e40d5c190e899..be45f31a4ee31 100644 --- a/contrib/gitian-descriptors/gitian-osx.yml +++ b/contrib/gitian-descriptors/gitian-osx.yml @@ -1,5 +1,5 @@ --- -name: "darknet-osx-2.0.1.0" +name: "darknet-osx-2.0.2.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-rpi2.yml b/contrib/gitian-descriptors/gitian-rpi2.yml index bcaa68771abb3..245847a62d0c6 100644 --- a/contrib/gitian-descriptors/gitian-rpi2.yml +++ b/contrib/gitian-descriptors/gitian-rpi2.yml @@ -1,5 +1,5 @@ --- -name: "darknet-rpi2-2.0.1.0" +name: "darknet-rpi2-2.0.2.0" enable_cache: true suites: - "trusty" diff --git a/contrib/gitian-descriptors/gitian-win.yml b/contrib/gitian-descriptors/gitian-win.yml index 6b14d05aae741..64fdfd9b2d604 100644 --- a/contrib/gitian-descriptors/gitian-win.yml +++ b/contrib/gitian-descriptors/gitian-win.yml @@ -1,5 +1,5 @@ --- -name: "darknet-win-2.0.1.0" +name: "darknet-win-2.0.2.0" enable_cache: true suites: - "trusty" diff --git a/doc/Doxyfile b/doc/Doxyfile index 2bcc6fd68e2ed..c6eb585c3b10d 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.0.1.0 +PROJECT_NUMBER = 2.0.2.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 a580d5b4e36cc..a7ac732c96db1 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,4 +1,4 @@ -DarkNet Core 2.0.1.0 +DarkNet Core 2.0.2.0 ===================== Setup diff --git a/doc/README_windows.txt b/doc/README_windows.txt index 405c4aac14252..8f3784c7477a0 100644 --- a/doc/README_windows.txt +++ b/doc/README_windows.txt @@ -1,4 +1,4 @@ -DarkNet Core 2.0.1.0 +DarkNet Core 2.0.2.0 ===================== Intro diff --git a/src/clientversion.h b/src/clientversion.h index cc842ab35d083..e36d0a4078439 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -16,7 +16,7 @@ //! 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 0 -#define CLIENT_VERSION_REVISION 1 +#define CLIENT_VERSION_REVISION 2 #define CLIENT_VERSION_BUILD 0 //! Set to true for release, false for prerelease or test build diff --git a/src/version.h b/src/version.h index 4a363824e392b..0e73407f6ae88 100644 --- a/src/version.h +++ b/src/version.h @@ -11,7 +11,7 @@ * network protocol versioning */ -static const int PROTOCOL_VERSION = 70300; +static const int PROTOCOL_VERSION = 70400; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209; @@ -20,11 +20,11 @@ static const int INIT_PROTO_VERSION = 209; static const int GETHEADERS_VERSION = 70077; //! disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70106; -static const int MIN_PEER_PROTO_VERSION_POS = 70199; +static const int MIN_PEER_PROTO_VERSION = 70400; +static const int MIN_PEER_PROTO_VERSION_POS = 70400; //! minimum peer version accepted by ObfuscationPool -static const int MIN_POOL_PEER_PROTO_VERSION = 70200; +static const int MIN_POOL_PEER_PROTO_VERSION = 70400; //! minimum peer version for masternode budgets static const int MIN_BUDGET_PEER_PROTO_VERSION = 70106; @@ -35,8 +35,8 @@ static const int MIN_MNW_PEER_PROTO_VERSION = 70104; //! minimum peer version that can receive masternode payments // V1 - Last protocol version before update // V2 - Newest protocol version -static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70200; -static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70300; +static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70300; +static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70400; //! nTime field added to CAddress, starting with this version; //! if possible, avoid requesting addresses nodes older than this