diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-18 23:06:23 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-20 01:31:07 +0800 |
commit | a17059573fe2ffce115b5368e798a87ce07dc1cd (patch) | |
tree | f4ed43e75f6e1af91159811f570f26b4b6ead818 /Changelog.md | |
parent | 4189b6b03dfcbcccacb17e4eeed4eaf6cd653002 (diff) | |
download | dexon-solidity-a17059573fe2ffce115b5368e798a87ce07dc1cd.tar.gz dexon-solidity-a17059573fe2ffce115b5368e798a87ce07dc1cd.tar.zst dexon-solidity-a17059573fe2ffce115b5368e798a87ce07dc1cd.zip |
Disallow raw callcode (was deprecated in 0.4.12)
Diffstat (limited to 'Changelog.md')
-rw-r--r-- | Changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md index 6a7c8da2..f77ab809 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ Breaking Changes: * 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 declaring empty structs. + * General: Disallow raw ``callcode`` (was already deprecated in 0.4.12). It is still possible to use it via inline assembly. * General: Disallow ``sha3`` and ``suicide`` aliases. * General: Introduce ``emit`` as a keyword instead of parsing it as identifier. * General: New keywords: ``calldata`` |