Bump version to 0.6.0, add to basecli command

This commit is contained in:
Ethan Frey 2017-06-22 16:21:59 +02:00
parent 5d147d1673
commit f5e96a8d31
2 changed files with 7 additions and 4 deletions

View File

@ -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()

View File

@ -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"