aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-07-04 20:09:46 +0800
committerGitHub <noreply@github.com>2018-07-04 20:09:46 +0800
commit4a332ab324ae1badafb43a5844863ccd98e85c63 (patch)
tree6f6e86a5b11fa2bad2fcd85f0432a621a2c7cb88 /Changelog.md
parent476372243bac932ae876bf24c236d48870be2912 (diff)
parentf5be38bff10b02ab5b7bc1125daa6fbe17f87b65 (diff)
downloaddexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar.gz
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar.bz2
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar.lz
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar.xz
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.tar.zst
dexon-solidity-4a332ab324ae1badafb43a5844863ccd98e85c63.zip
Merge pull request #4409 from ethereum/viewPureChecker
Enforce state mutability in view pure checker.
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index b36bec2e..64207c56 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -34,6 +34,7 @@ Breaking Changes:
* Type Checker: Only accept a single ``bytes`` type for ``.call()`` (and family), ``keccak256()``, ``sha256()`` and ``ripemd160()``.
* 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.
* Syntax Checker: Named return values in function types are an error.
+ * View Pure Checker: Strictly enfore state mutability. This was already the case in the experimental 0.5.0 mode.
Language Features:
* General: Allow appending ``calldata`` keyword to types, to explicitly specify data location for arguments of external functions.