diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-12 23:59:10 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-13 00:08:39 +0800 |
commit | 0e23b5e9547e69db0719ebf4cada3f49a011fe8e (patch) | |
tree | 0a3f3ea48028d252bff58a5813316548862ad064 | |
parent | d1e7e9ef5e3dfbf49045976da91a6a88dd28bbd3 (diff) | |
download | dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar.gz dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar.bz2 dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar.lz dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar.xz dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.tar.zst dexon-solidity-0e23b5e9547e69db0719ebf4cada3f49a011fe8e.zip |
Tidy up changelog for 0.5.0
-rw-r--r-- | Changelog.md | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/Changelog.md b/Changelog.md index eafec658..d3715237 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,38 +1,31 @@ ### 0.5.0 (unreleased) -Language Features: - * General: Support ``pop()`` for storage arrays. - Breaking Changes: - * Disallow conversions between bytesX and uintY of different size. + * 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: Introduce ``emit`` as a keyword instead of parsing it as identifier. * General: New keywords: ``calldata`` - * General: Add new reserved keywords: ``alias``, ``apply``, ``auto``, ``copyof``, ``define``, ``immutable``, + * General: New reserved keywords: ``alias``, ``apply``, ``auto``, ``copyof``, ``define``, ``immutable``, ``implements``, ``macro``, ``mutable``, ``override``, ``partial``, ``promise``, ``reference``, ``sealed``, ``sizeof``, ``supports``, ``typedef`` and ``unchecked``. - * 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: Signed right shift uses proper arithmetic shift, i.e. rounding towards negative infinity. Warning: this may silently change the semantics of existing code! - * Introduce ``emit`` as a keyword instead of parsing it as identifier. - * Type Checker: Disallow arithmetic operations for Boolean variables. - * Disallow trailing dots that are not followed by a number. - * Remove assembly instructions ``sha3`` and ``suicide`` + * General: Remove assembly instructions ``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. * 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. 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. -Bugfixes: - - - -Features: +Compiler Features: * Type Checker: Show named argument in case of error. Bugfixes: ### 0.4.24 (2018-05-16) - Language Features: * Code Generator: Use native shift instructions on target Constantinople. * General: Allow multiple variables to be declared as part of a tuple assignment, e.g. ``(uint a, uint b) = ...``. |