From 237ff73916446d169ac17d8ef51dea489ae626e0 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Fri, 12 Oct 2012 15:12:56 -0700 Subject: [PATCH] Bump protocol version. --- src/Version.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Version.h b/src/Version.h index 9d7a56be2..ef21c3ffa 100644 --- a/src/Version.h +++ b/src/Version.h @@ -5,7 +5,7 @@ // #define SERVER_VERSION_MAJOR 0 -#define SERVER_VERSION_MINOR 6 +#define SERVER_VERSION_MINOR 7 #define SERVER_VERSION_SUB "-a" #define SERVER_NAME "NewCoin" @@ -16,11 +16,11 @@ // Version we prefer to speak: #define PROTO_VERSION_MAJOR 1 -#define PROTO_VERSION_MINOR 1 +#define PROTO_VERSION_MINOR 2 // Version we will speak to: #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 GET_VERSION_MAJOR(ver) (ver >> 16)