tendermint/version/version.go

8 lines
260 B
Go
Raw Normal View History

2016-01-20 13:25:26 -08:00
package version
const Maj = "0"
2016-08-05 16:15:14 -07:00
const Min = "7" // tmsp useability (protobuf, unix); optimizations; broadcast_tx_commit
2016-10-11 21:24:24 -07:00
const Fix = "3" // fixes to event safety, mempool deadlock, hvs race, replay non-empty blocks
2016-01-20 13:25:26 -08:00
const Version = Maj + "." + Min + "." + Fix