changelog and version

This commit is contained in:
Ethan Buchman 2018-03-01 00:38:39 -05:00
parent 5494a4ed83
commit 158dfcebdc
2 changed files with 21 additions and 3 deletions

View File

@ -1,12 +1,30 @@
# Changelog
## 0.11.0 (TBD)
## 0.11.0 (March 1, 2017)
BREAKING CHANGES
* [examples] dummy -> kvstore
* [examples] Remove gaia
* [examples/basecoin] MakeTxCodec -> MakeCodec
* [types] CommitMultiStore interface has new `GetCommitKVStore(key StoreKey) CommitKVStore` method
FEATURES
* [examples/basecoin] CLI for `basecli` and `basecoind` (!)
* [baseapp] router.AddRoute returns Router
IMPROVEMENTS
* [baseapp] Run msg handlers on CheckTx
* [docs] Add spec for REST API
* [all] More tests!
BUG FIXES
* [baseapp] Fix panic on app restart
* [baseapp] InitChain does not call Commit
## 0.10.0 (February 20, 2017)
BREAKING CHANGES

View File

@ -6,10 +6,10 @@ package version
// TODO improve
const Maj = "0"
const Min = "10"
const Min = "11"
const Fix = "0"
const Version = "0.10.0-dev"
const Version = "0.11.0"
// GitCommit set by build flags
var GitCommit = ""