version and changelog

This commit is contained in:
Ethan Buchman 2018-02-20 22:45:19 -05:00
parent 6197eb831e
commit 0515bc094b
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 = ""