From 79d6b034b7b98988d8af2869bfee2e84bfbf8931 Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Thu, 30 Jul 2020 14:15:15 +0200 Subject: [PATCH] version: bump version numbers (#5173) Bumps the Tendermint version to 0.34.0, and debumps the P2P and block protocol numbers since 0.33.6 has: ```go // P2PProtocol versions all p2p behaviour and msgs. // This includes proposer selection. P2PProtocol Protocol = 7 // BlockProtocol versions all block data structures and processing. // This includes validity of blocks and state updates. BlockProtocol Protocol = 10 ``` --- version/version.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/version/version.go b/version/version.go index 3e78ac318..e87ceba78 100644 --- a/version/version.go +++ b/version/version.go @@ -20,7 +20,7 @@ const ( // Must be a string because scripts like dist.sh read this file. // XXX: Don't change the name of this variable or you will break // automation :) - TMCoreSemVer = "0.33.6" + TMCoreSemVer = "0.34.0" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.17.0" @@ -31,9 +31,9 @@ const ( var ( // P2PProtocol versions all p2p behaviour and msgs. // This includes proposer selection. - P2PProtocol uint64 = 9 + P2PProtocol uint64 = 8 // BlockProtocol versions all block data structures and processing. // This includes validity of blocks and state updates. - BlockProtocol uint64 = 12 + BlockProtocol uint64 = 11 )