changelog and version
This commit is contained in:
parent
29d878a85e
commit
7238b9d2d6
35
CHANGELOG.md
35
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
|
||||
|
|
|
@ -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 = ""
|
||||
|
|
Loading…
Reference in New Issue