From b9eec7e4380115aea4fd1c8962c4b399ac9afd4c Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Wed, 20 Jan 2016 11:36:31 -0500 Subject: [PATCH] version bump --- version.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/version.go b/version.go index 2982824dd..d0a0ee9cd 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