version and changelog
This commit is contained in:
parent
6197eb831e
commit
0515bc094b
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,5 +1,28 @@
|
||||||
# Changelog
|
# 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)
|
## 0.9.0 (February 13, 2017)
|
||||||
|
|
||||||
BREAKING CHANGES
|
BREAKING CHANGES
|
||||||
|
|
|
@ -6,10 +6,10 @@ package version
|
||||||
// TODO improve
|
// TODO improve
|
||||||
|
|
||||||
const Maj = "0"
|
const Maj = "0"
|
||||||
const Min = "9"
|
const Min = "10"
|
||||||
const Fix = "0"
|
const Fix = "0"
|
||||||
|
|
||||||
const Version = "0.9.0-dev"
|
const Version = "0.10.0"
|
||||||
|
|
||||||
// GitCommit set by build flags
|
// GitCommit set by build flags
|
||||||
var GitCommit = ""
|
var GitCommit = ""
|
||||||
|
|
Loading…
Reference in New Issue