tendermint/version.go
2016-08-10 01:13:13 -04:00

8 lines
218 B
Go

package rpc
const Maj = "0"
const Min = "5" // refactored out of tendermint/tendermint; RPCResponse.Result is RawJSON
const Fix = "1" // support tcp:// or unix:// prefixes
const Version = Maj + "." + Min + "." + Fix