Skip to content

Commit 1648093

Browse files
authored
Merge pull request #775 from RavenProject/hot_fix_release
Update to correct protocol version
2 parents 7066fa0 + fef056c commit 1648093

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
22
AC_PREREQ([2.60])
33
define(_CLIENT_VERSION_MAJOR, 4)
4-
define(_CLIENT_VERSION_MINOR, 0)
4+
define(_CLIENT_VERSION_MINOR, 1)
55
define(_CLIENT_VERSION_REVISION, 0)
66
define(_CLIENT_VERSION_BUILD, 0)
77
define(_CLIENT_VERSION_IS_RELEASE, true)

src/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
// Update these four values on every release cycle
1414
// These values should match the values in configure.ac
1515
// Used for checking the Ravencoin releases on github
16-
static const std::string SOFTWARE_VERSION = "v4.0.0";
16+
static const std::string SOFTWARE_VERSION = "v4.1.0";
1717
static const int MAIN_SOFTWARE_VERSION = 4;
18-
static const int SECOND_SOFTWARE_VERSION = 0;
18+
static const int SECOND_SOFTWARE_VERSION = 1;
1919
static const int THIRD_SOFTWARE_VERSION = 0;
2020

21-
static const int PROTOCOL_VERSION = 70026;
21+
static const int PROTOCOL_VERSION = 70027;
2222

2323
//! initial proto version, to be increased after version/verack negotiation
2424
static const int INIT_PROTO_VERSION = 209;

0 commit comments

Comments
 (0)