Changelog cleanup in preparation for 0.4.17.

This commit is contained in:
chriseth 2017-09-21 10:09:36 +02:00
parent 68fbe1ec0e
commit 22a58ad2d8

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.