changelog and version
This commit is contained in:
parent
e6d21c64cc
commit
2b6a3fc8e3
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,5 +1,16 @@
|
|||
# Changelog
|
||||
|
||||
## 0.18.0 (TBD)
|
||||
|
||||
FEATURES
|
||||
|
||||
* [x/auth] Added ability to change pubkey to auth module
|
||||
* [baseapp] baseapp now has settable functions for filtering peers by address/port & public key
|
||||
* [sdk] Gas consumption is now measured as transactions are executed
|
||||
* Transactions which run out of gas stop execution and revert state changes
|
||||
* A "simulate" query has been added to determine how much gas a transaction will need
|
||||
* Modules can include their own gas costs for execution of particular message types
|
||||
|
||||
## 0.17.0 (May 15, 2018)
|
||||
|
||||
BREAKING CHANGES
|
||||
|
@ -12,14 +23,6 @@ FEATURES
|
|||
* [gaiad] Added `gaiad export` command to export current state to JSON
|
||||
* [x/bank] Tx tags with sender/recipient for indexing & later retrieval
|
||||
* [x/stake] Tx tags with delegator/candidate for delegation & unbonding, and candidate info for declare candidate / edit candidacy
|
||||
* [x/auth] Added ability to change pubkey to auth module
|
||||
* [baseapp] baseapp now has settable functions for filtering peers by address/port & public key
|
||||
* [sdk] Gas consumption is now measured as transactions are executed
|
||||
* Transactions which run out of gas stop execution and revert state changes
|
||||
* A "simulate" query has been added to determine how much gas a transaction will need
|
||||
* Modules can include their own gas costs for execution of particular message types
|
||||
* [x/bank] Bank module now tags transactions with sender/recipient for indexing & later retrieval
|
||||
* [x/stake] Stake module now tags transactions with delegator/candidate for delegation & unbonding, and candidate info for declare candidate / edit candidacy
|
||||
|
||||
IMPROVEMENTS
|
||||
|
||||
|
|
|
@ -6,10 +6,10 @@ package version
|
|||
// TODO improve
|
||||
|
||||
const Maj = "0"
|
||||
const Min = "17"
|
||||
const Min = "18"
|
||||
const Fix = "0"
|
||||
|
||||
const Version = "0.17.0"
|
||||
const Version = "0.18.0-dev"
|
||||
|
||||
// GitCommit set by build flags
|
||||
var GitCommit = ""
|
||||
|
|
Loading…
Reference in New Issue