From f7df5340b39f9f7661b56b1f3d7cb6070a1d37fb Mon Sep 17 00:00:00 2001 From: Jonathan Chappelow Date: Mon, 19 Nov 2018 09:06:54 -0600 Subject: [PATCH] rpcserver: bump version to 5.0.0 This bumps the major version of the JSON RPC server to reflect the breaking change of reordering the reorg and block connected notifications. The reorg notification now indicates a successful reorg was completed rather than initiated. --- rpcserver.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcserver.go b/rpcserver.go index ebe2db54ee..7d8bc2781f 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -53,10 +53,10 @@ import ( // API version constants const ( - jsonrpcSemverString = "4.0.1" - jsonrpcSemverMajor = 4 + jsonrpcSemverString = "5.0.0" + jsonrpcSemverMajor = 5 jsonrpcSemverMinor = 0 - jsonrpcSemverPatch = 1 + jsonrpcSemverPatch = 0 ) const (