diff --git a/Changelog.md b/Changelog.md index 458a9543a..bdd6ac468 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,13 +1,13 @@ -### 0.4.17 (unreleased) +### 0.4.17 (2017-09-21) Features: - * Support ``pragma experimental "v0.5.0";`` to turn on upcoming breaking changes. * 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: 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. - * Code Generator: Support passing ``structs`` as arguments and return parameters (requires ``pragma experimental ABIEncoderV2;`` for now). - * Static Analyzer: Warn for using deprecated builtins ``sha3`` and ``suicide`` + * Static Analyzer: Warn when using deprecated builtins ``sha3`` and ``suicide`` (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. * Type Checker: Display helpful warning for unused function arguments/return parameters. diff --git a/docs/bugs_by_version.json b/docs/bugs_by_version.json index ea2420855..c3686ebfd 100644 --- a/docs/bugs_by_version.json +++ b/docs/bugs_by_version.json @@ -358,6 +358,10 @@ "bugs": [], "released": "2017-08-24" }, + "0.4.17": { + "bugs": [], + "released": "2017-09-21" + }, "0.4.2": { "bugs": [ "DelegateCallReturnValue",