tendermint/version.go

8 lines
218 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"
const Min = "5" // refactored out of tendermint/tendermint; RPCResponse.Result is RawJSON
const Fix = "1" // support tcp:// or unix:// prefixes
2016-01-20 08:36:31 -08:00
const Version = Maj + "." + Min + "." + Fix