diff --git a/CHANGELOG.md b/CHANGELOG.md index a3dbe07d9..6040849c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## v0.33.1 + +*Feburary 13, 2020* + +Special thanks to external contributors on this release: +@princesinha19 + +Friendly reminder, we have a [bug bounty +program](https://hackerone.com/tendermint). + +### FEATURES: + +- [rpc] [\#3333](https://github.com/tendermint/tendermint/issues/3333) Add `order_by` to `/tx_search` endpoint, allowing to change default ordering from asc to desc (@princesinha19) + +### IMPROVEMENTS: + +- [proto] [\#4369](https://github.com/tendermint/tendermint/issues/4369) Add [buf](https://buf.build/) for usage with linting and checking if there are breaking changes with the master branch. +- [proto] [\#4369](https://github.com/tendermint/tendermint/issues/4369) Add `make proto-gen` cmd to generate proto stubs outside of GOPATH. + +### BUG FIXES: + +- [node] [\#4311](https://github.com/tendermint/tendermint/issues/4311) Use `GRPCMaxOpenConnections` when creating the gRPC server, not `MaxOpenConnections` +- [rpc] [\#4319](https://github.com/tendermint/tendermint/issues/4319) Check `BlockMeta` is not nil in `/block` & `/block_by_hash` + ## v0.33 Special thanks to external contributors on this release: @mrekucci, @PSalant726, @princesinha19, @greg-szabo, @dongsam, @cuonglm, @jgimeno, @yenkhoon diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index 50ce5d8d6..bf41c1b5b 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -1,9 +1,8 @@ -## v0.33.1 +## v0.33.2 \*\* Special thanks to external contributors on this release: -@princesinha19 Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermint). @@ -18,15 +17,6 @@ program](https://hackerone.com/tendermint). ### FEATURES: -- [rpc] [\#3333] Add `order_by` to `/tx_search` endpoint, allowing to change default ordering from asc to desc (more in the future) (@princesinha19) - ### IMPROVEMENTS: -- [proto] [\#4369] Add [buf](https://buf.build/) for usage with linting and checking if there are breaking changes with the master branch. -- [proto] [\#4369] Add `make proto-gen` cmd to generate proto stubs outside of GOPATH. - - ### BUG FIXES: - -- [node] [#\4311] Use `GRPCMaxOpenConnections` when creating the gRPC server, not `MaxOpenConnections` -- [rpc] [#\4319] Check `BlockMeta` is not nil in `/block` & `/block_by_hash` diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7b348ad76..623cfb53a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,7 +31,7 @@ at the RFC stage will build collective understanding of the dimensions of the problems and help structure conversations around trade-offs. When the problem is well understood but the solution leads to large -strucural changes to the code base, these changes should be proposed in +structural changes to the code base, these changes should be proposed in the form of an [Architectural Decision Record (ADR)](./docs/architecture/). The ADR will help build consensus on an overall strategy to ensure the code base maintains coherence diff --git a/version/version.go b/version/version.go index 603e44702..57ef21f1f 100644 --- a/version/version.go +++ b/version/version.go @@ -20,7 +20,7 @@ const ( // Must be a string because scripts like dist.sh read this file. // XXX: Don't change the name of this variable or you will break // automation :) - TMCoreSemVer = "0.32.8" + TMCoreSemVer = "0.33.1" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.16.1"