Merge pull request #496 from cosmos/release-v0.10.0

version and changelog
This commit is contained in:
Ethan Buchman 2018-02-20 22:50:46 -05:00 committed by GitHub
commit 8ccf055ca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 2 deletions

View File

@ -1,5 +1,28 @@
# Changelog
## 0.10.0 (February 20, 2017)
BREAKING CHANGES
* [baseapp] NewBaseApp(logger, db)
* [baseapp] NewContext(isCheckTx, header)
* [x/bank] CoinMapper -> CoinKeeper
FEATURES
* [examples/gaia] Mock CLI !
* [baseapp] InitChainer, BeginBlocker, EndBlocker
* [baseapp] MountStoresIAVL
IMPROVEMENTS
* [docs] Various improvements.
* [basecoin] Much simpler :)
BUG FIXES
* [baseapp] initialize and reset msCheck and msDeliver properly
## 0.9.0 (February 13, 2017)
BREAKING CHANGES

View File

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