tendermint/version/version.go

8 lines
194 B
Go
Raw Normal View History

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