aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-07-19 01:51:24 +0800
committerLeonardo Alt <leo@ethereum.org>2018-07-19 01:51:24 +0800
commitfaa9c221d41c45e12411c654919f318f6e7fc98f (patch)
tree4393a4143da54f183e0459c59b0f3687bc5fbe37 /Changelog.md
parent25fa1142bc2ba74e75f24f8267d7fcb282423335 (diff)
downloaddexon-solidity-faa9c221d41c45e12411c654919f318f6e7fc98f.tar.gz
dexon-solidity-faa9c221d41c45e12411c654919f318f6e7fc98f.tar.zst
dexon-solidity-faa9c221d41c45e12411c654919f318f6e7fc98f.zip
Changes in ExpressionCompiler
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md
index c18b589e..6776de7e 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -5,7 +5,7 @@ How to update your code:
* Change every ``keccak256(a, b, c)`` to ``keccak256(abi.encodePacked(a, b, c))``.
* Make your fallback functions ``external``.
* Explicitly state the storage location for local variables of struct and array types, e.g. change ``uint[] x = m_x`` to ``uint[] storage x = m_x``.
- * Explicitly convert ``contract`` to ``address`` before using an ``address`` member. Example: if ``c`` is a variable of type ``contract``, change ``c.transfer(...)`` to ``address(c).transfer(...)``.
+ * Explicitly convert values of contract type to addresses before using an ``address`` member. Example: if ``c`` is a contract, change ``c.transfer(...)`` to ``address(c).transfer(...)``.
Breaking Changes:
@@ -47,7 +47,7 @@ Breaking Changes:
* Type Checker: Only accept a single ``bytes`` type for ``.call()`` (and family), ``keccak256()``, ``sha256()`` and ``ripemd160()``.
* Type Checker: Fallback function must be external. This was already the case in the experimental 0.5.0 mode.
* Type Checker: Interface functions must be declared external. This was already the case in the experimental 0.5.0 mode.
- * Type Checker: ``Contract`` does not have access to ``address`` members anymore. An explicit conversion is now required before invoking an ``address`` member from a ``contract``.
+ * Type Checker: Address members are not included in contract types anymore. An explicit conversion is now required before invoking an ``address`` member from a contract.
* 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.
* References Resolver: Turn missing storage locations into an error. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Named return values in function types are an error.