Merge pull request #672 from cosmos/bucky/changelog

version and changelog
This commit is contained in:
Ethan Buchman 2018-03-22 22:51:25 -04:00 committed by GitHub
commit 7e570bb3a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 5 deletions

View File

@ -4,15 +4,38 @@
BREAKING CHANGES
* Revert to old go-wire for now
* glide -> godep
* [types] ErrBadNonce -> ErrInvalidSequence
* [types] Replace tx.GetFeePayer with FeePayer(tx) - returns the first signer
* [types] NewStdTx takes the Fee
* [auth] AnteHandler deducts fees
* [bank] Move some errors to `types`
* [bank] Remove sequence and signature from Input
FEATURES
* [examples/basecoin] new cool module to demonstrate use of state and custom transactions
* [examples/basecoin] New cool module to demonstrate use of state and custom transactions
* [lcd] Implement the Light Client Daemon and endpoints
* [types/stdlib] Queue functionality
* [store] Subspace iterator on IAVLTree
* [types] StdSignDoc is the document that gets signed (chainid, msg, sequence, fee)
* [types] CodeInvalidPubKey
* [types] StdFee, and StdTx takes the StdFee
* [specs] Progression of MVPs for IBC
* [x/ibc] Initial shell of IBC functionality (no proofs)
IMPROVEMENTS
* [client] refactor to now include more standard code
* Lots more tests!
* [client/builder] Helpers for forming and signing transactions
* [types] sdk.Address
* [specs] Staking
BUG FIXES
* [auth] Fix setting pubkey on new account
* [auth] Require signatures to include the sequences
* [baseapp] Dont panic on nil handler
## 0.11.0 (March 1, 2017)

View File

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