Merge pull request #2943 from ethereum/changelog0417

Changelog cleanup in preparation for 0.4.17.
This commit is contained in:
chriseth 2017-09-21 15:26:58 +02:00 committed by GitHub
commit a14fc5ffa1
2 changed files with 9 additions and 5 deletions

View File

@ -1,13 +1,13 @@
### 0.4.17 (unreleased) ### 0.4.17 (2017-09-21)
Features: Features:
* Support ``pragma experimental "v0.5.0";`` to turn on upcoming breaking changes.
* Assembly Parser: Support multiple assignment (``x, y := f()``). * Assembly Parser: Support multiple assignment (``x, y := f()``).
* Code Generator: Added ``.selector`` member on external function types to retrieve their signature.
* Code Generator: Keep a single copy of encoding functions when using the experimental "ABIEncoderV2". * Code Generator: Keep a single copy of encoding functions when using the experimental "ABIEncoderV2".
* Code Generator: Partial support for passing ``structs`` as arguments and return parameters (requires ``pragma experimental ABIEncoderV2;`` for now).
* General: Support ``pragma experimental "v0.5.0";`` to activate upcoming breaking changes.
* General: Added ``.selector`` member on external function types to retrieve their signature.
* Optimizer: Add new optimization step to remove unused ``JUMPDEST``s. * Optimizer: Add new optimization step to remove unused ``JUMPDEST``s.
* Code Generator: Support passing ``structs`` as arguments and return parameters (requires ``pragma experimental ABIEncoderV2;`` for now). * Static Analyzer: Warn when using deprecated builtins ``sha3`` and ``suicide``
* Static Analyzer: Warn for using deprecated builtins ``sha3`` and ``suicide``
(replaced by ``keccak256`` and ``selfdestruct``, introduced in 0.4.2 and 0.2.0, respectively). (replaced by ``keccak256`` and ``selfdestruct``, introduced in 0.4.2 and 0.2.0, respectively).
* Syntax Checker: Warn if no visibility is specified on contract functions. * Syntax Checker: Warn if no visibility is specified on contract functions.
* Type Checker: Display helpful warning for unused function arguments/return parameters. * Type Checker: Display helpful warning for unused function arguments/return parameters.

View File

@ -358,6 +358,10 @@
"bugs": [], "bugs": [],
"released": "2017-08-24" "released": "2017-08-24"
}, },
"0.4.17": {
"bugs": [],
"released": "2017-09-21"
},
"0.4.2": { "0.4.2": {
"bugs": [ "bugs": [
"DelegateCallReturnValue", "DelegateCallReturnValue",