diff --git a/cmd/basecli/main.go b/cmd/basecli/main.go index 0506882a27..50e47cb1ba 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 a45ea4e72d..8e82ffaffe 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"