From aa57e89e216e886ce6927cb6989692f0165971d0 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Mon, 2 Oct 2017 14:28:04 -0400 Subject: [PATCH] changelog: add genesis amount->power --- CHANGELOG.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ccc7e0a..e911e073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,14 +31,16 @@ BUG FIXES: ## 0.11.0 (September 22, 2017) BREAKING: - - state: every validator set change is persisted to disk, which required some changes to the `State` structure. - - cmd: if there is no genesis, exit immediately instead of waiting around for one to show. - - p2p: new `p2p.Peer` interface used for all reactor methods (instead of `*p2p.Peer` struct). - - types: `Signer.Sign` returns an error. + - genesis file: validator `amount` is now `power` + - abci: Info, BeginBlock, InitChain all take structs - rpc: various changes to match JSONRPC spec (http://www.jsonrpc.org/specification), including breaking ones: - requests that previously returned HTTP code 4XX now return 200 with an error code in the JSONRPC. - `rpctypes.RPCResponse` uses new `RPCError` type instead of `string`. - - abci: Info, BeginBlock, InitChain all take structs + + - cmd: if there is no genesis, exit immediately instead of waiting around for one to show. + - types: `Signer.Sign` returns an error. + - state: every validator set change is persisted to disk, which required some changes to the `State` structure. + - p2p: new `p2p.Peer` interface used for all reactor methods (instead of `*p2p.Peer` struct). FEATURES: - rpc: `/validators?height=X` allows querying of validators at previous heights.