From 4e86835163d188ac6ea3af59fc99ad49db49f103 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Tue, 27 Mar 2018 09:06:32 +0200 Subject: [PATCH] update changelog for 0.17.0 release --- CHANGELOG.md | 8 ++++---- types/genesis.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 563dda2f2..02f032c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,12 +25,10 @@ BUG FIXES: - Graceful handling/recovery for apps that have non-determinism or fail to halt - Graceful handling/recovery for violations of safety, or liveness -## 0.17.0 (TBD) +## 0.17.0 (March 27th, 2018) BREAKING: -- [genesis] removed `app_options` - -## 0.16.1 (March 26th, 2018) +- [types] WriteSignBytes -> SignBytes IMPROVEMENTS: - [all] renamed `dummy` (`persistent_dummy`) to `kvstore` (`persistent_kvstore`) (name "dummy" is deprecated and will not work in the next breaking release) @@ -44,6 +42,8 @@ IMPROVEMENTS: - [p2p] when `auth_enc` is true, all dialed peers must have a node ID in their address - [spec] various improvements - switched from glide to dep internally for package management +- [wire] prep work for upgrading to new go-wire (which is now called go-amino) +- [types/priv_validator] new format and socket client, allowing for remote signing FEATURES: - [config] added the `--p2p.private_peer_ids` flag and `PrivatePeerIDs` config variable (see config for description) diff --git a/types/genesis.go b/types/genesis.go index c4b7c52e4..a760caff9 100644 --- a/types/genesis.go +++ b/types/genesis.go @@ -33,7 +33,7 @@ type GenesisDoc struct { } // AppState returns raw application state. -// TODO: replace with AppState field during next breaking release (0.17) +// TODO: replace with AppState field during next breaking release (0.18) func (genDoc *GenesisDoc) AppState() json.RawMessage { if len(genDoc.AppOptions) > 0 { return genDoc.AppOptions