Browse Source

Prep release: bump version & add changelog entry

Signed-off-by: Ismail Khoffi <Ismail.Khoffi@gmail.com>
pull/3570/head
Ismail Khoffi 5 years ago
parent
commit
62f90f0077
No known key found for this signature in database GPG Key ID: 4C8F1569A20B711C
3 changed files with 14 additions and 3 deletions
  1. +13
    -0
      CHANGELOG.md
  2. +0
    -2
      CHANGELOG_PENDING.md
  3. +1
    -1
      version/version.go

+ 13
- 0
CHANGELOG.md View File

@ -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*


+ 0
- 2
CHANGELOG_PENDING.md View File

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

+ 1
- 1
version/version.go View File

@ -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"


Loading…
Cancel
Save