From f5e96a8d31db61f07328ef7850cddd0d6d991d5c Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 22 Jun 2017 16:21:59 +0200 Subject: [PATCH] Bump version to 0.6.0, add to basecli command --- cmd/basecli/main.go | 5 ++++- version/version.go | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/cmd/basecli/main.go b/cmd/basecli/main.go index 0506882a2..50e47cb1b 100644 --- a/cmd/basecli/main.go +++ b/cmd/basecli/main.go @@ -14,6 +14,7 @@ import ( "github.com/tendermint/tmlibs/cli" bcmd "github.com/tendermint/basecoin/cmd/basecli/commands" + coincmd "github.com/tendermint/basecoin/cmd/basecoin/commands" ) // BaseCli represents the base command when called without any subcommands @@ -51,7 +52,9 @@ func main() { seeds.RootCmd, pr, tr, - proxy.RootCmd) + proxy.RootCmd, + coincmd.VersionCmd, + ) cmd := cli.PrepareMainCmd(BaseCli, "BC", os.ExpandEnv("$HOME/.basecli")) cmd.Execute() diff --git a/version/version.go b/version/version.go index a45ea4e72..8e82ffaff 100644 --- a/version/version.go +++ b/version/version.go @@ -1,7 +1,7 @@ package version const Maj = "0" -const Min = "5" -const Fix = "2" +const Min = "6" +const Fix = "0" -const Version = "0.5.2" +const Version = "0.6.0"