mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
changelog and version
This commit is contained in:
parent
ed93fb34ab
commit
9cc2cf362f
21
CHANGELOG.md
21
CHANGELOG.md
@ -7,7 +7,6 @@ BREAKING CHANGES:
|
|||||||
- Upgrade consensus for more real-time use of evidence
|
- Upgrade consensus for more real-time use of evidence
|
||||||
|
|
||||||
FEATURES:
|
FEATURES:
|
||||||
- Peer reputation management
|
|
||||||
- Use the chain as its own CA for nodes and validators
|
- Use the chain as its own CA for nodes and validators
|
||||||
- Tooling to run multiple blockchains/apps, possibly in a single process
|
- Tooling to run multiple blockchains/apps, possibly in a single process
|
||||||
- State syncing (without transaction replay)
|
- State syncing (without transaction replay)
|
||||||
@ -25,20 +24,32 @@ BUG FIXES:
|
|||||||
- Graceful handling/recovery for apps that have non-determinism or fail to halt
|
- Graceful handling/recovery for apps that have non-determinism or fail to halt
|
||||||
- Graceful handling/recovery for violations of safety, or liveness
|
- Graceful handling/recovery for violations of safety, or liveness
|
||||||
|
|
||||||
## 0.18.0 (TBD)
|
## 0.18.0 (April 6th, 2018)
|
||||||
|
|
||||||
BREAKING:
|
BREAKING:
|
||||||
|
|
||||||
|
- [types] Merkle tree uses different encoding for varints (see tmlibs v0.8.0)
|
||||||
|
- [types] ValidtorSet.GetByAddress returns -1 if no validator found
|
||||||
- [p2p] require all addresses come with an ID no matter what
|
- [p2p] require all addresses come with an ID no matter what
|
||||||
|
- [rpc] Listening address must contain tcp:// or unix:// prefix
|
||||||
|
|
||||||
|
FEATURES:
|
||||||
|
|
||||||
|
- [rpc] StartHTTPAndTLSServer (not used yet)
|
||||||
|
- [rpc] Include validator's voting power in `/status`
|
||||||
|
- [rpc] `/tx` and `/tx_search` responses now include the transaction hash
|
||||||
|
- [rpc] Include peer NodeIDs in `/net_info`
|
||||||
|
|
||||||
IMPROVEMENTS:
|
IMPROVEMENTS:
|
||||||
- [p2p] seeds respond with a bias towards good peers
|
|
||||||
- [config] trim whitespace from elements of lists (like `persistent_peers`)
|
- [config] trim whitespace from elements of lists (like `persistent_peers`)
|
||||||
- [rpc] `/tx` and `/tx_search` responses now include the transaction hash
|
- [rpc] `/tx_search` results are sorted by height
|
||||||
- [rpc] include validator power in `/status`
|
|
||||||
- [p2p] do not try to connect to ourselves (ok, maybe only once)
|
- [p2p] do not try to connect to ourselves (ok, maybe only once)
|
||||||
|
- [p2p] seeds respond with a bias towards good peers
|
||||||
|
|
||||||
BUG FIXES:
|
BUG FIXES:
|
||||||
- [rpc] fix subscribing using an abci.ResponseDeliverTx tag
|
- [rpc] fix subscribing using an abci.ResponseDeliverTx tag
|
||||||
|
- [rpc] fix tx_indexers matchRange
|
||||||
|
- [rpc] fix unsubscribing (see tmlibs v0.8.0)
|
||||||
|
|
||||||
## 0.17.1 (March 27th, 2018)
|
## 0.17.1 (March 27th, 2018)
|
||||||
|
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
package version
|
package version
|
||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "17"
|
const Min = "18"
|
||||||
const Fix = "1"
|
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.17.1"
|
Version = "0.18.0"
|
||||||
|
|
||||||
// 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