github.com/DFWallet/tendermint-cosmos@v0.0.2/version/version.go (about) 1 package version 2 3 var ( 4 TMCoreSemVer = TMVersionDefault 5 ) 6 7 const ( 8 // TMVersionDefault is the used as the fallback version of Tendermint Core 9 // when not using git describe. It is formatted with semantic versioning. 10 TMVersionDefault = "0.34.14" 11 // ABCISemVer is the semantic version of the ABCI library 12 ABCISemVer = "0.17.0" 13 14 ABCIVersion = ABCISemVer 15 ) 16 17 var ( 18 // P2PProtocol versions all p2p behaviour and msgs. 19 // This includes proposer selection. 20 P2PProtocol uint64 = 8 21 22 // BlockProtocol versions all block data structures and processing. 23 // This includes validity of blocks and state updates. 24 BlockProtocol uint64 = 11 25 )