Browse Source

version bump to 0.4.0

pull/1780/head
Ethan Buchman 7 years ago
parent
commit
0b1ee4b673
2 changed files with 11 additions and 1 deletions
  1. +2
    -1
      cmd/abci-cli/abci-cli.go
  2. +9
    -0
      version/version.go

+ 2
- 1
cmd/abci-cli/abci-cli.go View File

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


+ 9
- 0
version/version.go View File

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

Loading…
Cancel
Save