aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-09-21 21:26:58 +0800
committerGitHub <noreply@github.com>2017-09-21 21:26:58 +0800
commita14fc5ffa1f03d5aa312396a39633d720b04c90a (patch)
treed8fb917e7dc27b937cb4505029bbc3c8c1bc1a67
parent68fbe1ec0e979535c03fbba0f12a07c9f9b79385 (diff)
parent3dc7c3807b403d861a956a31e49ad13de8cb0b3f (diff)
downloaddexon-solidity-a14fc5ffa1f03d5aa312396a39633d720b04c90a.tar.gz
dexon-solidity-a14fc5ffa1f03d5aa312396a39633d720b04c90a.tar.zst
dexon-solidity-a14fc5ffa1f03d5aa312396a39633d720b04c90a.zip
Merge pull request #2943 from ethereum/changelog0417
Changelog cleanup in preparation for 0.4.17.
-rw-r--r--Changelog.md10
-rw-r--r--docs/bugs_by_version.json4
2 files changed, 9 insertions, 5 deletions
diff --git a/Changelog.md b/Changelog.md
index 458a9543..bdd6ac46 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 ea242085..c3686ebf 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",