tendermint/version.go

8 lines
180 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"
const Min = "5" // refactored out of tendermint/tendermint; RPCResponse.Result is RawJSON
const Fix = "0"
const Version = Maj + "." + Min + "." + Fix