1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-12 12:51:22 +00:00
Files
tendermint/version/version.go

8 lines
254 B
Go
Raw Normal View History

2016-01-20 16:25:26 -05:00
package version
const Maj = "0"
2016-08-05 19:15:14 -04:00
const Min = "7" // tmsp useability (protobuf, unix); optimizations; broadcast_tx_commit
const Fix = "2" // query conn, peer filter, fast sync fix (+hot fix to tmsp connecting)
2016-01-20 16:25:26 -05:00
const Version = Maj + "." + Min + "." + Fix