version bump to 0.2.0

This commit is contained in:
Ethan Buchman 2017-02-26 13:51:39 -05:00
parent 4798640183
commit cd3a545264
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"os"
"github.com/tendermint/basecoin/cmd/commands"
"github.com/tendermint/basecoin/version"
"github.com/urfave/cli"
)
@ -11,7 +12,7 @@ func main() {
app := cli.NewApp()
app.Name = "basecoin"
app.Usage = "basecoin [command] [args...]"
app.Version = "0.1.0"
app.Version = version.Version
app.Commands = []cli.Command{
commands.StartCmd,
commands.TxCmd,