Browse Source

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
```
pull/5176/head
Erik Grinaker 4 years ago
committed by GitHub
parent
commit
79d6b034b7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      version/version.go

+ 3
- 3
version/version.go View File

@ -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
)

Loading…
Cancel
Save