diff options
author | chriseth <chris@ethereum.org> | 2017-07-03 20:13:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 20:13:17 +0800 |
commit | 2222ddecf49b5b901f63b9e7449ee76c9f51c47a (patch) | |
tree | 5fc0b9bfe065aacbbcc3ac9ef5059a213ad648d5 | |
parent | eaf4d670707edd137d5c164b41b06f3021e44270 (diff) | |
parent | d1e4e03807f783ac3a9f755b54df081f6567aa0b (diff) | |
download | dexon-solidity-2222ddecf49b5b901f63b9e7449ee76c9f51c47a.tar.gz dexon-solidity-2222ddecf49b5b901f63b9e7449ee76c9f51c47a.tar.zst dexon-solidity-2222ddecf49b5b901f63b9e7449ee76c9f51c47a.zip |
Merge pull request #2509 from ethereum/version
Version
-rw-r--r-- | Changelog.md | 4 | ||||
-rw-r--r-- | docs/bugs_by_version.json | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md index 8ae7c2bf..b41852df 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -### 0.4.12 (unreleased) +### 0.4.12 (2017-07-03) Features: * 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. * Inline Assembly: Enforce function arguments when parsing functional instructions. * 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: Fixed crash concerning non-callable types. * Type Checker: Fixed segfault with constant function parameters @@ -34,7 +35,6 @@ Bugfixes: * Type Checker: Disallow invoking the same modifier multiple times. * Type Checker: Do not treat strings that look like addresses as addresses. * 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) diff --git a/docs/bugs_by_version.json b/docs/bugs_by_version.json index 1be05f3c..cab79f05 100644 --- a/docs/bugs_by_version.json +++ b/docs/bugs_by_version.json @@ -297,6 +297,10 @@ ], "released": "2017-05-03" }, + "0.4.12": { + "bugs": [], + "released": "2017-07-03" + }, "0.4.2": { "bugs": [ "SkipEmptyStringLiteral", |