tendermint/version.go

8 lines
151 B
Go
Raw Normal View History

2016-01-12 13:50:06 -08:00
package rpc
2016-01-20 08:36:31 -08:00
const Maj = "0"
2017-01-11 21:13:20 -08:00
const Min = "6" // 0x-prefixed string args handled as hex
const Fix = "0" //
2016-01-20 08:36:31 -08:00
const Version = Maj + "." + Min + "." + Fix