aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-06-21 19:57:59 +0800
committerGitHub <noreply@github.com>2018-06-21 19:57:59 +0800
commit0d1047181d22c049aa5573acf9826d1701dd66ae (patch)
tree2e0295bb85a9a24b97ee6a7c3316d82369805ada /Changelog.md
parent7e4bd3e3468ec1d240068fde5b45f380cdef411c (diff)
parent8862b3092bcdbcb8314ec27e2b11bf25fcc6346a (diff)
downloaddexon-solidity-0d1047181d22c049aa5573acf9826d1701dd66ae.tar.gz
dexon-solidity-0d1047181d22c049aa5573acf9826d1701dd66ae.tar.zst
dexon-solidity-0d1047181d22c049aa5573acf9826d1701dd66ae.zip
Merge pull request #4306 from ethereum/remove_050_workaround_scoping
[BREAKING] C99 scoping rules by default (remove 050 workaround)
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 46d9b87b..07b74ddc 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -16,6 +16,7 @@ Breaking Changes:
``implements``, ``macro``, ``mutable``, ``override``, ``partial``, ``promise``, ``reference``, ``sealed``,
``sizeof``, ``supports``, ``typedef`` and ``unchecked``.
* General: Remove assembly instruction aliases ``sha3`` and ``suicide``
+ * General: C99-style scoping rules are enforced now. This was already the case in the experimental 0.5.0 mode.
* Optimizer: Remove the no-op ``PUSH1 0 NOT AND`` sequence.
* Parser: Disallow trailing dots that are not followed by a number.
* Type Checker: Disallow arithmetic operations for boolean variables.
@@ -26,6 +27,7 @@ Breaking Changes:
Language Features:
* General: Allow appending ``calldata`` keyword to types, to explicitly specify data location for arguments of external functions.
* General: Support ``pop()`` for storage arrays.
+ * General: Scoping rules now follow the C99-style.
Compiler Features:
* Type Checker: Show named argument in case of error.