From a2ba50718e8156a73740a56bf53a150addf516f5 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 15 May 2018 12:43:13 -0400 Subject: [PATCH] changelog and version --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++------ version/version.go | 4 ++-- 2 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a88e09c46d2..01180ade98d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.17.0 (TBD) + +BREAKING CHANGES + +* [stake] MarshalJSON -> MarshalBinary + +FEATURES + +* [gaiacli] Support queries for candidates, delegator-bonds +* [gaiad] Added `gaiad export` command to export current state to JSON +* [x/bank] Tx tags with sender/recipient for indexing & later retrieval +* [x/stake] Tx tags with delegator/candidate for delegation & unbonding, and candidate info for declare candidate / edit candidacy + +IMPROVEMENTS + +* [gaiad] Update for Tendermint v0.19.3 (improve `/dump_consensus_state` and add + `/consensus_state`) +* [spec/ibc] Added spec! +* [spec/stake] Cleanup structure, include details about slashing and + auto-unbonding +* [spec/governance] Fixup some names and pseudocode +* NOTE: specs are still a work-in-progress ... + +BUG FIXES + +* Auto-sequencing now works correctly + ## 0.16.0 (May 14th, 2018) BREAKING CHANGES @@ -18,7 +45,6 @@ BREAKING CHANGES FEATURES: -* Added `gaiad export` command, which exports genesis information & current state * Gaia stake commands include, DeclareCandidacy, EditCandidacy, Delegate, Unbond * MountStoreWithDB without providing a custom store works. * Repo is now lint compliant / GoMetaLinter with tendermint-lint integrated into CI @@ -28,14 +54,10 @@ FEATURES: * New genesis account keys are automatically added to the client keybase (introduce `--client-home` flag) * Initialize with genesis txs using `--gen-txs` flag * Context now has access to the application-configured logger -* Add (non-proof) subspace query helper functions -* Add more staking query functions: candidates, delegator-bonds -* Bank module now tags transactions with sender/recipient for indexing & later retrieval -* Stake module now tags transactions with delegator/candidate for delegation & unbonding, and candidate info for declare candidate / edit candidacy + BUG FIXES * Gaia now uses stake, ported from github.com/cosmos/gaia -* Auto-sequencing now works correctly ## 0.15.1 (April 29, 2018) diff --git a/version/version.go b/version/version.go index b19a56018071..ec2b70f3aaa8 100644 --- a/version/version.go +++ b/version/version.go @@ -6,10 +6,10 @@ package version // TODO improve const Maj = "0" -const Min = "16" +const Min = "17" const Fix = "0" -const Version = "0.16.0" +const Version = "0.17.0-dev" // GitCommit set by build flags var GitCommit = ""