Browse Source

bump version one more time

pull/1370/head
Anton Kaliaev 7 years ago
parent
commit
58242e1b63
No known key found for this signature in database GPG Key ID: 7B6881D965918214
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      docs/examples/install_tendermint.sh
  2. +3
    -3
      version/version.go

+ 1
- 1
docs/examples/install_tendermint.sh View File

@ -26,7 +26,7 @@ go get $REPO
cd $GOPATH/src/$REPO
## build
git checkout v0.16.1
git checkout v0.17.0
make get_tools
make get_vendor_deps
make install

+ 3
- 3
version/version.go View File

@ -1,13 +1,13 @@
package version
const Maj = "0"
const Min = "16"
const Fix = "1"
const Min = "17"
const Fix = "0"
var (
// Version is the current version of Tendermint
// Must be a string because scripts like dist.sh read this file.
Version = "0.16.1"
Version = "0.17.0"
// GitCommit is the current HEAD set using ldflags.
GitCommit string


Loading…
Cancel
Save