tendermint/version.go

8 lines
151 B
Go
Raw Normal View History

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