Skip to content

Commit

Permalink
rpcserver: bump version to 5.0.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
chappjc committed Nov 19, 2018
1 parent b691780 commit f7df534
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpcserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit f7df534

Please sign in to comment.