diff options
author | chriseth <chris@ethereum.org> | 2018-05-31 00:51:52 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 00:51:52 +0800 |
commit | 0a1a8bfb09f996ad288baf4f195d621e143de7d9 (patch) | |
tree | c02a87fa814cad222cd138b54fc73f52251983b1 /Changelog.md | |
parent | 0e3d4f773fb40c3368d968e165c24ff653860120 (diff) | |
parent | ac6871078940f0ae4a47380091fc46ed46a63d0a (diff) | |
download | dexon-solidity-0a1a8bfb09f996ad288baf4f195d621e143de7d9.tar.gz dexon-solidity-0a1a8bfb09f996ad288baf4f195d621e143de7d9.tar.zst dexon-solidity-0a1a8bfb09f996ad288baf4f195d621e143de7d9.zip |
Merge pull request #4172 from ethereum/trailing_dot
[BREAKING] Disallow trailing dot not followed by number
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 13e3f676..c1077926 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,6 +9,7 @@ Breaking Changes: * General: New keywords: ``calldata`` * 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. * Type Checker: Disallow arithmetic operations for Boolean variables. + * Disallow trailing dots that are not followed by a number. Language Features: * General: Allow appending ``calldata`` keyword to types, to explicitly specify data location for arguments of external functions. |