Update version.go & changelog

This commit is contained in:
Christopher Goes 2018-06-13 10:05:50 +02:00
parent 5a273a1cdd
commit 65786e4578
No known key found for this signature in database
GPG Key ID: E828D98232D328D3
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 0.19.0
*June 13, 2018*
BREAKING CHANGES
* msg.GetSignBytes() now returns bech32-encoded addresses in all cases
* [lcd] REST end-points now include gas
@ -15,6 +19,7 @@ IMPROVEMENTS
* [x/stake] More stake tests added to test ByPower index
FIXES
* Fixes consensus fault on testnet - see postmortem [here](https://github.com/cosmos/cosmos-sdk/issues/1197#issuecomment-396823021)
* [x/stake] bonded inflation removed, non-bonded inflation partially implemented
* [lcd] Switch to bech32 for addresses on all human readable inputs and outputs
* [lcd] fixed tx indexing/querying

View File

@ -6,10 +6,10 @@ package version
// TODO improve
const Maj = "0"
const Min = "18"
const Min = "19"
const Fix = "0"
const Version = "0.18.0"
const Version = "0.19.0"
// GitCommit set by build flags
var GitCommit = ""