aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-04-17 02:21:17 +0800
committerGitHub <noreply@github.com>2018-04-17 02:21:17 +0800
commit2db8b8a7bd19d1ab834840e6355da1b7ae354ad8 (patch)
treebd23c2b474066bba66f82e7c06a8f2a2076f3fb8
parentaf18b4deb8abeb3954639d06aff0f7f3353877bd (diff)
parentc65159c78b5b7a4553af5f769cee943f145a9027 (diff)
downloaddexon-solidity-2db8b8a7bd19d1ab834840e6355da1b7ae354ad8.tar.gz
dexon-solidity-2db8b8a7bd19d1ab834840e6355da1b7ae354ad8.tar.zst
dexon-solidity-2db8b8a7bd19d1ab834840e6355da1b7ae354ad8.zip
Merge pull request #3893 from ethereum/prepareForRelease
Preparation for 0.4.22 release.
-rw-r--r--Changelog.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index 8a315685..0015c949 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -9,6 +9,7 @@ Features:
* General: Add global function ``gasleft()`` and deprecate ``msg.gas``.
* General: Add global function ``blockhash(uint)`` and deprecate ``block.hash(uint)``.
* General: Allow providing reason string for ``revert()`` and ``require()``.
+ * General: Introduce new constructor syntax using the ``constructor`` keyword as experimental 0.5.0 feature.
* General: Limit the number of errors output in a single run to 256.
* General: Support accessing dynamic return data in post-byzantium EVMs.
* Inheritance: Error when using empty parentheses for base class constructors that require arguments as experimental 0.5.0 feature.
@@ -23,7 +24,6 @@ Features:
* Syntax Checker: Warn about modifiers on functions without implementation (this will turn into an error with version 0.5.0).
* Syntax Tests: Add source locations to syntax test expectations.
* Type Checker: Improve documentation and warnings for accessing contract members inherited from ``address``.
- * General: Introduce new constructor syntax using the ``constructor`` keyword as experimental 0.5.0 feature.
Bugfixes: