mirror of
https://github.com/tendermint/tendermint.git
synced 2025-12-23 14:25:19 +00:00
* Update Tendermint version * Update version/version.go Co-authored-by: Thane Thomson <connect@thanethomson.com> Co-authored-by: Thane Thomson <connect@thanethomson.com>
26 lines
642 B
Go
26 lines
642 B
Go
package version
|
|
|
|
var (
|
|
TMCoreSemVer = TMVersionDefault
|
|
)
|
|
|
|
const (
|
|
// TMVersionDefault is the used as the fallback version of Tendermint Core
|
|
// when not using git describe. It is formatted with semantic versioning.
|
|
TMVersionDefault = "0.37.0-alpha.1"
|
|
// ABCISemVer is the semantic version of the ABCI protocol
|
|
ABCISemVer = "1.0.0"
|
|
|
|
ABCIVersion = ABCISemVer
|
|
)
|
|
|
|
var (
|
|
// P2PProtocol versions all p2p behavior and msgs.
|
|
// This includes proposer selection.
|
|
P2PProtocol uint64 = 8
|
|
|
|
// BlockProtocol versions all block data structures and processing.
|
|
// This includes validity of blocks and state updates.
|
|
BlockProtocol uint64 = 11
|
|
)
|