aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-13 00:06:47 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-06-13 01:16:18 +0800
commit9de45383d81c666deba27162ce163fc1c8c852dc (patch)
tree9a3983c7b62802179a044b822d1b687a9e38da2b /Changelog.md
parent0e23b5e9547e69db0719ebf4cada3f49a011fe8e (diff)
downloaddexon-solidity-9de45383d81c666deba27162ce163fc1c8c852dc.tar.gz
dexon-solidity-9de45383d81c666deba27162ce163fc1c8c852dc.tar.zst
dexon-solidity-9de45383d81c666deba27162ce163fc1c8c852dc.zip
Disallow sha3/suicide aliases
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index d3715237..8c895ee0 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,12 +4,13 @@ Breaking Changes:
* Code Generator: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code!
* Commandline interface: Require ``-`` if standard input is used as source.
* General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code.
+ * General: Disallow ``sha3`` and ``suicide`` aliases.
* General: Introduce ``emit`` as a keyword instead of parsing it as identifier.
* General: New keywords: ``calldata``
* General: New reserved keywords: ``alias``, ``apply``, ``auto``, ``copyof``, ``define``, ``immutable``,
``implements``, ``macro``, ``mutable``, ``override``, ``partial``, ``promise``, ``reference``, ``sealed``,
``sizeof``, ``supports``, ``typedef`` and ``unchecked``.
- * General: Remove assembly instructions ``sha3`` and ``suicide``
+ * General: Remove assembly instruction aliases ``sha3`` and ``suicide``
* Parser: Disallow trailing dots that are not followed by a number.
* Type Checker: Disallow arithmetic operations for boolean variables.
* Type Checker: Disallow conversions between ``bytesX`` and ``uintY`` of different size.