diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ba8e7c6678167..f2aec468f495e 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -1,7 +1,7 @@ TEMPLATE = app TARGET = franko-qt macx:TARGET = "Franko-Qt" -VERSION = 0.8.5.4 +VERSION = 0.8.5.5 INCLUDEPATH += src src/json src/qt QT += core gui network greaterThan(QT_MAJOR_VERSION, 4): QT += widgets diff --git a/share/setup.nsi b/share/setup.nsi index 3adb4b8558bfe..740f950f215ba 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.8.5.4 +!define VERSION 0.8.5.5 !define COMPANY "Franko Collective" !define URL http://www.frankos.org diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp index 55b4ef7d37532..3ff6d6943103f 100644 --- a/src/checkpoints.cpp +++ b/src/checkpoints.cpp @@ -59,13 +59,14 @@ namespace Checkpoints ( 785863, uint256("0x9ea053de310cc64a14c9b48849f9ed1e5b5898b30696f3d935b40047feb2306b")) ( 785950, uint256("0x1ea42eb64c0a5027549e58d2b532e4fe5da6c901b723fd2ae2d4b7263807e8da")) ( 786082, uint256("0x980e5394dee86c2d12572cff87d74b260e2e37c2ef321118cf5a7b68f15188ea")) + ( 805345, uint256("0xa35e590108bb87970c748ea4f39bc700fc1adf3e0cfea28317f6f7236beeebb3")) ; static const CCheckpointData data = { &mapCheckpoints, - 1402608823, // * UNIX timestamp of last checkpoint block - 920949, // * total number of transactions between genesis and last checkpoint + 1403212414, // * UNIX timestamp of last checkpoint block + 941685, // * total number of transactions between genesis and last checkpoint // (the tx=... number in the SetBestChain debug.log lines) - 10000 // * estimated number of transactions per day after checkpoint + 5000 // * estimated number of transactions per day after checkpoint }; static MapCheckpoints mapCheckpointsTestnet = diff --git a/src/clientversion.h b/src/clientversion.h index 26e6445b856c5..4ea8ba38d4ffa 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -9,7 +9,7 @@ #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 8 #define CLIENT_VERSION_REVISION 5 -#define CLIENT_VERSION_BUILD 4 +#define CLIENT_VERSION_BUILD 5 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true diff --git a/src/version.h b/src/version.h index 281159b978bd3..4843cd9f9cf6e 100644 --- a/src/version.h +++ b/src/version.h @@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 70002; +static const int PROTOCOL_VERSION = 70003; // earlier versions not supported as of Feb 2012, and are disconnected static const int MIN_PROTO_VERSION = 209;