Bump protocol version.

This commit is contained in:
Arthur Britto
2012-10-12 15:12:56 -07:00
parent fcd88f12fc
commit 237ff73916

View File

@@ -5,7 +5,7 @@
// //
#define SERVER_VERSION_MAJOR 0 #define SERVER_VERSION_MAJOR 0
#define SERVER_VERSION_MINOR 6 #define SERVER_VERSION_MINOR 7
#define SERVER_VERSION_SUB "-a" #define SERVER_VERSION_SUB "-a"
#define SERVER_NAME "NewCoin" #define SERVER_NAME "NewCoin"
@@ -16,11 +16,11 @@
// Version we prefer to speak: // Version we prefer to speak:
#define PROTO_VERSION_MAJOR 1 #define PROTO_VERSION_MAJOR 1
#define PROTO_VERSION_MINOR 1 #define PROTO_VERSION_MINOR 2
// Version we will speak to: // Version we will speak to:
#define MIN_PROTO_MAJOR 1 #define MIN_PROTO_MAJOR 1
#define MIN_PROTO_MINOR 1 #define MIN_PROTO_MINOR 2
#define MAKE_VERSION_INT(maj,min) ((maj << 16) | min) #define MAKE_VERSION_INT(maj,min) ((maj << 16) | min)
#define GET_VERSION_MAJOR(ver) (ver >> 16) #define GET_VERSION_MAJOR(ver) (ver >> 16)