mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
update version and changelog [ci skip]
This commit is contained in:
parent
0467de890a
commit
8bba7c64bc
10
CHANGELOG.md
10
CHANGELOG.md
@ -5,7 +5,6 @@
|
|||||||
BREAKING CHANGES:
|
BREAKING CHANGES:
|
||||||
- Better support for injecting randomness
|
- Better support for injecting randomness
|
||||||
- Upgrade consensus for more real-time use of evidence
|
- Upgrade consensus for more real-time use of evidence
|
||||||
- the files usually found in `~/.tendermint` (`config.toml`, `genesis.json`, and `priv_validator.json`) are now in `~/.tendermint/config`. The `$TMHOME/data/` directory remains unchanged.
|
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
- Peer reputation management
|
- Peer reputation management
|
||||||
@ -35,25 +34,30 @@ BREAKING CHANGES:
|
|||||||
- [p2p] NodeInfo: remove RemoteAddr and add Channels
|
- [p2p] NodeInfo: remove RemoteAddr and add Channels
|
||||||
- we must have at least one overlapping channel with peer
|
- we must have at least one overlapping channel with peer
|
||||||
- we only send msgs for channels the peer advertised
|
- we only send msgs for channels the peer advertised
|
||||||
|
- [p2p/conn] pong timeout
|
||||||
|
- [lite] comment out IAVL related code
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
- [p2p] added new `/dial_peers&persistent=_` **unsafe** endpoint
|
- [p2p] added new `/dial_peers&persistent=_` **unsafe** endpoint
|
||||||
- [p2p] persistent node key in `$THMHOME/config/node_key.json`
|
- [p2p] persistent node key in `$THMHOME/config/node_key.json`
|
||||||
- [p2p] introduce peer ID and authenticate peers by ID using addresses like `ID@IP:PORT`
|
- [p2p] introduce peer ID and authenticate peers by ID using addresses like `ID@IP:PORT`
|
||||||
- [p2p] new seed mode in pex reactor crawls the network and serves as a seed.
|
- [p2p/pex] new seed mode crawls the network and serves as a seed.
|
||||||
- [config] MempoolConfig.CacheSize
|
- [config] MempoolConfig.CacheSize
|
||||||
- [config] P2P.SeedMode (`--p2p.seed_mode`)
|
- [config] P2P.SeedMode (`--p2p.seed_mode`)
|
||||||
|
|
||||||
IMPROVEMENT:
|
IMPROVEMENT:
|
||||||
- [p2p] stricter rules in the PEX reactor for better handling of abuse
|
- [p2p/pex] stricter rules in the PEX reactor for better handling of abuse
|
||||||
- [p2p] various improvements to code structure including subpackages for `pex` and `conn`
|
- [p2p] various improvements to code structure including subpackages for `pex` and `conn`
|
||||||
- [docs] new spec!
|
- [docs] new spec!
|
||||||
|
- [all] speed up the tests!
|
||||||
|
|
||||||
BUG FIX:
|
BUG FIX:
|
||||||
- [blockchain] StopPeerForError on timeout
|
- [blockchain] StopPeerForError on timeout
|
||||||
- [consensus] StopPeerForError on a bad Maj23 message
|
- [consensus] StopPeerForError on a bad Maj23 message
|
||||||
- [state] flush mempool conn before calling commit
|
- [state] flush mempool conn before calling commit
|
||||||
- [types] fix priv val signing things that only differ by timestamp
|
- [types] fix priv val signing things that only differ by timestamp
|
||||||
|
- [mempool] fix memory leak causing zombie peers
|
||||||
|
- [p2p/conn] fix potential deadlock
|
||||||
|
|
||||||
## 0.15.0 (December 29, 2017)
|
## 0.15.0 (December 29, 2017)
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package version
|
package version
|
||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "15"
|
const Min = "16"
|
||||||
const Fix = "0"
|
const Fix = "0"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// Version is the current version of Tendermint
|
// Version is the current version of Tendermint
|
||||||
// Must be a string because scripts like dist.sh read this file.
|
// Must be a string because scripts like dist.sh read this file.
|
||||||
Version = "0.15.0"
|
Version = "0.16.0-dev"
|
||||||
|
|
||||||
// GitCommit is the current HEAD set using ldflags.
|
// GitCommit is the current HEAD set using ldflags.
|
||||||
GitCommit string
|
GitCommit string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user