diff --git a/version.go b/version.go index 2982824d..d0a0ee9c 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,7 @@ package rpc -const Version = "0.4.0" +const Maj = "0" +const Min = "5" // refactored out of tendermint/tendermint; RPCResponse.Result is RawJSON +const Fix = "0" + +const Version = Maj + "." + Min + "." + Fix