Skip to content

Commit

Permalink
Bump Version to 0.3.76beta
Browse files Browse the repository at this point in the history
  • Loading branch information
phelixnmc committed Aug 27, 2014
1 parent b3ba912 commit e29c3f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion namecoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TEMPLATE = app
TARGET = namecoin-qt
macx:TARGET = "Namecoin-Qt"
VERSION = 0.3.75
VERSION = 0.3.76
INCLUDEPATH += src src/json src/qt
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
Expand Down
4 changes: 2 additions & 2 deletions src/qt/res/bitcoin-qt.rc
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ IDI_ICON1 ICON DISCARDABLE "icons/bitcoin.ico"

#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 3
#define CLIENT_VERSION_REVISION 75
#define CLIENT_VERSION_REVISION 76
#define CLIENT_VERSION_BUILD 0

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
#define STRINGIZE(X) DO_STRINGIZE(X)
#define DO_STRINGIZE(X) #X
#define DO_STRINGIZE(X) #X

#endif

Expand Down
4 changes: 2 additions & 2 deletions src/serialize.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class CDataStream;
class CAutoFile;
static const unsigned int MAX_SIZE = 0x02000000;

static const int VERSION = 37500;
static const int VERSION = 37600;
static const char* pszSubVer = "";
static const bool VERSION_IS_BETA = false;
static const bool VERSION_IS_BETA = true;



Expand Down

0 comments on commit e29c3f1

Please sign in to comment.