diff options
author | chriseth <chris@ethereum.org> | 2018-06-29 06:29:52 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-06-29 22:11:21 +0800 |
commit | f69e24c85e9e4131fe393cc0cf64900a19a88cc9 (patch) | |
tree | 073844cfe4cd8cbac6a31923b117353f91b41690 /Changelog.md | |
parent | e289c36158701ba0b874051e9e426e270b0e38e2 (diff) | |
download | dexon-solidity-f69e24c85e9e4131fe393cc0cf64900a19a88cc9.tar.gz dexon-solidity-f69e24c85e9e4131fe393cc0cf64900a19a88cc9.tar.zst dexon-solidity-f69e24c85e9e4131fe393cc0cf64900a19a88cc9.zip |
Disallow constructor arguments given multiple times.
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 b1f742bf..5a60cbfc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -27,6 +27,7 @@ Breaking Changes: * 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. + * Type Checker: Disallow specifying base constructor arguments multiple times in the same inheritance hierarchy. This was already the case in the experimental 0.5.0 mode. * Type Checker: Only accept a single ``bytes`` type for ``.call()`` (and family), ``keccak256()``, ``sha256()`` and ``ripemd160()``. * Remove obsolete ``std`` directory from the Solidity repository. This means accessing ``https://github.com/ethereum/soldity/blob/develop/std/*.sol`` (or ``https://github.com/ethereum/solidity/std/*.sol`` in Remix) will not be possible. * Syntax Checker: Named return values in function types are an error. |