Merge pull request #2509 from ethereum/version

Version
This commit is contained in:
chriseth 2017-07-03 14:13:17 +02:00 committed by GitHub
commit 2222ddecf4
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
### 0.4.12 (unreleased) ### 0.4.12 (2017-07-03)
Features: Features:
* Assembly: Add ``CREATE2`` (EIP86), ``STATICCALL`` (EIP214), ``RETURNDATASIZE`` and ``RETURNDATACOPY`` (EIP211) instructions. * Assembly: Add ``CREATE2`` (EIP86), ``STATICCALL`` (EIP214), ``RETURNDATASIZE`` and ``RETURNDATACOPY`` (EIP211) instructions.
@ -27,6 +27,7 @@ Bugfixes:
* Code generator: Use ``REVERT`` instead of ``INVALID`` for generated input validation routines. * Code generator: Use ``REVERT`` instead of ``INVALID`` for generated input validation routines.
* Inline Assembly: Enforce function arguments when parsing functional instructions. * Inline Assembly: Enforce function arguments when parsing functional instructions.
* Optimizer: Disallow optimizations involving ``MLOAD`` because it changes ``MSIZE``. * Optimizer: Disallow optimizations involving ``MLOAD`` because it changes ``MSIZE``.
* Static Analyzer: Unused variable warnings no longer issued for variables used inside inline assembly.
* Type Checker: Fix address literals not being treated as compile-time constants. * Type Checker: Fix address literals not being treated as compile-time constants.
* Type Checker: Fixed crash concerning non-callable types. * Type Checker: Fixed crash concerning non-callable types.
* Type Checker: Fixed segfault with constant function parameters * Type Checker: Fixed segfault with constant function parameters
@ -34,7 +35,6 @@ Bugfixes:
* Type Checker: Disallow invoking the same modifier multiple times. * Type Checker: Disallow invoking the same modifier multiple times.
* Type Checker: Do not treat strings that look like addresses as addresses. * Type Checker: Do not treat strings that look like addresses as addresses.
* Type Checker: Support valid, but incorrectly rejected UTF-8 sequences. * Type Checker: Support valid, but incorrectly rejected UTF-8 sequences.
* Unused variable warnings no longer issued for variables used inside inline assembly.
### 0.4.11 (2017-05-03) ### 0.4.11 (2017-05-03)

View File

@ -297,6 +297,10 @@
], ],
"released": "2017-05-03" "released": "2017-05-03"
}, },
"0.4.12": {
"bugs": [],
"released": "2017-07-03"
},
"0.4.2": { "0.4.2": {
"bugs": [ "bugs": [
"SkipEmptyStringLiteral", "SkipEmptyStringLiteral",