From 0b1ee4b67318047d20a90bc6a8b0119a15c7c771 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 3 Mar 2017 18:43:05 -0500 Subject: [PATCH] version bump to 0.4.0 --- cmd/abci-cli/abci-cli.go | 3 ++- version/version.go | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 version/version.go diff --git a/cmd/abci-cli/abci-cli.go b/cmd/abci-cli/abci-cli.go index 1b08b76ab..accae9d1e 100644 --- a/cmd/abci-cli/abci-cli.go +++ b/cmd/abci-cli/abci-cli.go @@ -12,6 +12,7 @@ import ( "github.com/tendermint/abci/client" "github.com/tendermint/abci/types" + "github.com/tendermint/abci/version" "github.com/urfave/cli" ) @@ -43,7 +44,7 @@ func main() { app := cli.NewApp() app.Name = "abci-cli" app.Usage = "abci-cli [command] [args...]" - app.Version = "0.3.0" // hex handling + app.Version = version.Version app.Flags = []cli.Flag{ cli.StringFlag{ Name: "address", diff --git a/version/version.go b/version/version.go new file mode 100644 index 000000000..04695d9b8 --- /dev/null +++ b/version/version.go @@ -0,0 +1,9 @@ +package version + +// NOTE: we should probably be versioning the ABCI and the abci-cli separately + +const Maj = "0" +const Min = "4" +const Fix = "0" + +const Version = "0.4.0" // new Query args and response (with proof!)