From 62f90f0077893545db264c3a24c8f88a43fad997 Mon Sep 17 00:00:00 2001 From: Ismail Khoffi Date: Tue, 16 Apr 2019 14:30:58 +0200 Subject: [PATCH] Prep release: bump version & add changelog entry Signed-off-by: Ismail Khoffi --- CHANGELOG.md | 13 +++++++++++++ CHANGELOG_PENDING.md | 2 -- version/version.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e1a9d26..f1c59707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## v0.30.4 + +*April 16th, 2019* + +This release fixes a regression from v0.30.3 which used the peer's SocketAddr to add the peer to the address book. +This swallowed the peer's self-reported port which is important in case of reconnect. +It brings back NetAddress() to NodeInfo and uses it instead of SocketAddr for adding peers. + +### BUG FIXES: + +- [p2p] [\#3545](https://github.com/tendermint/tendermint/issues/3545) Add back `NetAddress()` to `NodeInfo` and use it +instead of peer's `SocketAddr()` when adding a peer to the `PEXReactor` (potential fix for [\#3532](https://github.com/tendermint/tendermint/issues/3532)) + ## v0.30.3 *April 1st, 2019* diff --git a/CHANGELOG_PENDING.md b/CHANGELOG_PENDING.md index a7548ee7..64098583 100644 --- a/CHANGELOG_PENDING.md +++ b/CHANGELOG_PENDING.md @@ -20,6 +20,4 @@ Special thanks to external contributors on this release: ### IMPROVEMENTS: -- [CircleCI] \#3497 Move release management to CircleCI - ### BUG FIXES: diff --git a/version/version.go b/version/version.go index ab9c4ab3..5e8bddfe 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.30.3" + TMCoreSemVer = "0.30.4" // ABCISemVer is the semantic version of the ABCI library ABCISemVer = "0.15.0"