tendermint/version/version.go

8 lines
194 B
Go
Raw Normal View History

2016-01-20 13:25:26 -08:00
package version
const Maj = "0"
2017-01-12 19:07:55 -08:00
const Min = "8" // validator set changes, tmsp->abci, app persistence/recovery, BFT-liveness fix
const Fix = "0" //
2016-01-20 13:25:26 -08:00
const Version = Maj + "." + Min + "." + Fix