Prep release: bump version & add changelog entry

Signed-off-by: Ismail Khoffi <Ismail.Khoffi@gmail.com>
This commit is contained in:
Ismail Khoffi 2019-04-16 14:30:58 +02:00
parent 362ef77eb0
commit 62f90f0077
No known key found for this signature in database
GPG Key ID: 4C8F1569A20B711C
3 changed files with 14 additions and 3 deletions

View File

@ -1,5 +1,18 @@
# Changelog # 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 ## v0.30.3
*April 1st, 2019* *April 1st, 2019*

View File

@ -20,6 +20,4 @@ Special thanks to external contributors on this release:
### IMPROVEMENTS: ### IMPROVEMENTS:
- [CircleCI] \#3497 Move release management to CircleCI
### BUG FIXES: ### BUG FIXES:

View File

@ -20,7 +20,7 @@ const (
// Must be a string because scripts like dist.sh read this file. // 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 // XXX: Don't change the name of this variable or you will break
// automation :) // automation :)
TMCoreSemVer = "0.30.3" TMCoreSemVer = "0.30.4"
// ABCISemVer is the semantic version of the ABCI library // ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.15.0" ABCISemVer = "0.15.0"