diff --git a/CHANGELOG.md b/CHANGELOG.md index 7edcad3e..97b4a6cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,11 @@ BUG FIXES: - consensus: fix panic where prs.ProposalBlockParts is not initialized - p2p: fix panic on bad channel +## 0.12.1 (November 27, 2017) + +BUG FIXES: +- upgrade tmlibs dependency to enable Windows builds for Tendermint + ## 0.12.0 (October 27, 2017) BREAKING CHANGES: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 907e6658..787fd718 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -86,3 +86,15 @@ especially `go-p2p` and `go-rpc`, as their versions are referenced in tendermint - push to release-vX.X.X to run the extended integration tests on the CI - merge to master - merge master back to develop + +### Hotfix Procedure: +- start on `master` +- checkout a new branch named hotfix-vX.X.X +- make the required changes + - these changes should be small and an absolute necessity + - add a note to CHANGELOG.md +- bumb versions +- push to hotfix-vX.X.X to run the extended integration tests on the CI +- merge hotfix-vX.X.X to master +- merge hotfix-vX.X.X to develop +- delete the hotfix-vX.X.X branch \ No newline at end of file diff --git a/glide.lock b/glide.lock index d1eb4ec9..ed3108df 100644 --- a/glide.lock +++ b/glide.lock @@ -123,7 +123,7 @@ imports: subpackages: - iavl - name: github.com/tendermint/tmlibs - version: d9525c0fb671204450b160807480e1263053fb20 + version: b854baa1fce7101c90b1d301b3359bb412f981c0 subpackages: - autofile - cli diff --git a/glide.yaml b/glide.yaml index ddce26cc..1faa73bd 100644 --- a/glide.yaml +++ b/glide.yaml @@ -34,7 +34,7 @@ import: subpackages: - iavl - package: github.com/tendermint/tmlibs - version: ~0.4.0 + version: ~0.4.1 subpackages: - autofile - cli diff --git a/version/version.go b/version/version.go index 6995caa4..637cc5de 100644 --- a/version/version.go +++ b/version/version.go @@ -2,11 +2,11 @@ package version const Maj = "0" const Min = "12" -const Fix = "0" +const Fix = "1" var ( // The full version string - Version = "0.12.0" + Version = "0.12.1" // GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)" GitCommit string