mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-10 06:57:24 +00:00
8 lines
228 B
Go
8 lines
228 B
Go
package version
|
|
|
|
const Maj = "0"
|
|
const Min = "7" // tmsp useability (protobuf, unix); optimizations; broadcast_tx_commit
|
|
const Fix = "4" // --pex flag and less restricted /dial_seeds
|
|
|
|
const Version = Maj + "." + Min + "." + Fix
|