bump version one more time

This commit is contained in:
Anton Kaliaev 2018-03-27 09:07:29 +02:00
parent 4e86835163
commit 58242e1b63
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
2 changed files with 4 additions and 4 deletions

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

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