Changelog entry.

This commit is contained in:
chriseth 2020-10-15 17:32:04 +02:00
parent 93642f9bfc
commit fae1773ce0

View File

@ -7,6 +7,7 @@ Breaking Changes:
* Type System: Unary negation can only be used on signed integers, not on unsigned integers.
* Type System: Disallow explicit conversions from negative literals and literals larger than ``type(uint160).max`` to ``address`` type.
* Parser: Exponentiation is right associative. ``a**b**c`` is parsed as ``a**(b**c)``.
* Code Generator: Use ``revert`` with error signature ``Panic(uint256)`` and error codes instead of invalid opcode on failing assertions.
Language Features: