From 7238b9d2d660c8154ac66e07214dbc2eabb9931f Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Sun, 1 Apr 2018 02:30:12 +0300 Subject: [PATCH] changelog and version --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ version/version.go | 4 ++-- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 362e84e006..f21b1ea68b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## 0.13.0 (TBD) + +BREAKING CHANGES + +* [baseapp] `AddRoute` takes an `InitGenesis` function for per-module + initialization +* [basecoin] Remove cool/sketchy modules -> moved to new `democoin` +* [basecoin] NewBasecoinApp takes a `map[string]dbm.DB` as temporary measure + to allow mounting multiple stores with their own DB until they can share one +* [staking] Renamed to `simplestake` +* [builder] Functions don't take `passphrase` as argument +* [server] GenAppState returns generated seed and address +* [basecoind] `init` command outputs JSON of everything necessary for testnet +* [basecoind] `basecoin.db -> data/basecoin.db` +* [basecli] `data/keys.db -> keys/keys.db` +* [cool] Mapper -> Keeper + +FEATURES + +* [types] `Coin` supports direct arithmetic operations +* [basecoind] Add `show_validator` and `show_node_id` commands +* [staking] Initial merge of full staking module! +* [democoin] New example application to demo custom modules + +IMPROVEMENTS + +* [makefile] `make install` +* [testing] Use `/tmp` for directories so they don't get left in the repo + +BUG FIXES + +* [basecoin] Allow app to be restarted +* [makefile] Fix build on Windows +* [basecli] Get confirmation before overriding key with same name + ## 0.12.0 (March 27 2018) BREAKING CHANGES diff --git a/version/version.go b/version/version.go index 59f530bfb4..426d904ccd 100644 --- a/version/version.go +++ b/version/version.go @@ -6,10 +6,10 @@ package version // TODO improve const Maj = "0" -const Min = "12" +const Min = "13" const Fix = "0" -const Version = "0.12.0" +const Version = "0.13.0-dev" // GitCommit set by build flags var GitCommit = ""