Increase version
authoralex <alex@alex-VirtualBox.(none)>
Sat, 15 Jun 2013 16:58:45 +0000 (20:58 +0400)
committeralex <alex@alex-VirtualBox.(none)>
Sat, 15 Jun 2013 16:58:45 +0000 (20:58 +0400)
README.md
novacoin-qt.pro
src/clientversion.h
src/version.h

index a3943fb..a9a1ade 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,6 +5,7 @@ NovaCoin - a hybrid scrypt PoW + PoS based cryptocurrency.
 
 * 10 minutes stake spacing
 * 30 minutes PoW spacing
+* Balanced PoW blocks and stakes weighting
 * The PoW subsidy halves every x64 multiply of PoW difficulty
 * The PoS interest halves every x64 multiply of PoS difficulty
 * Maximum PoW reward is 100 coins
index 53b06fa..193da96 100644 (file)
@@ -1,6 +1,6 @@
 TEMPLATE = app
 TARGET = novacoin-qt
-VERSION = 0.7.2
+VERSION = 0.7.4
 INCLUDEPATH += src src/json src/qt
 DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
 CONFIG += no_include_pwd
index 5ada4d8..b85b281 100644 (file)
@@ -8,7 +8,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       7
-#define CLIENT_VERSION_REVISION    2
+#define CLIENT_VERSION_REVISION    4
 #define CLIENT_VERSION_BUILD       0
 
 // Converts the parameter X to a string after macro replacement on X has been performed.
index 7281f4b..0e607f8 100644 (file)
@@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE;
 // network protocol versioning
 //
 
-static const int PROTOCOL_VERSION = 60007;
+static const int PROTOCOL_VERSION = 60008;
 
 // earlier versions not supported as of Feb 2012, and are disconnected
 static const int MIN_PROTO_VERSION = 209;
@@ -46,7 +46,7 @@ static const int MEMPOOL_GD_VERSION = 60002;
 
 #define DISPLAY_VERSION_MAJOR       0
 #define DISPLAY_VERSION_MINOR       4
-#define DISPLAY_VERSION_REVISION    2
+#define DISPLAY_VERSION_REVISION    3
 #define DISPLAY_VERSION_BUILD       0
 
 #endif