aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-07-18 18:03:25 +0800
committerErik Kundt <bitshift@posteo.org>2018-07-18 18:03:25 +0800
commit8b827af5bf4ed52c9612bcf1bdadb25ca7b879bf (patch)
treec5657726547d314fef6e80af702d061275afe5c7 /Changelog.md
parent05d0e5c8fa24f122c39f7e50d18f3f4d818665cf (diff)
downloaddexon-solidity-8b827af5bf4ed52c9612bcf1bdadb25ca7b879bf.tar.gz
dexon-solidity-8b827af5bf4ed52c9612bcf1bdadb25ca7b879bf.tar.zst
dexon-solidity-8b827af5bf4ed52c9612bcf1bdadb25ca7b879bf.zip
Updates changelog to be more specific about visibility enforcement.
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 1046fcbd..1064d8f6 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -3,7 +3,7 @@
How to update your code:
* Change every ``.call()`` to a ``.call("")`` and every ``.call(signature, a, b, c)`` to use ``.call(abi.encodeWithSignature(signature, a, b, c))`` (the last one only works for value types).
* Change every ``keccak256(a, b, c)`` to ``keccak256(abi.encodePacked(a, b, c))``.
- * Add ``public`` to every function that does not specify its visibility already.
+ * Add ``public`` to every function and ``external`` to every fallback or interface function that does not specify its visibility already.
* 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``.
@@ -50,7 +50,7 @@ Breaking Changes:
* 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.
- * Syntax Checker: Strictly require visibility specifier. This was already the case in the experimental 0.5.0 mode.
+ * Syntax Checker: Strictly require visibility specifier for functions. This was already the case in the experimental 0.5.0 mode.
* Syntax Checker: Disallow unary ``+``. This was already the case in the experimental 0.5.0 mode.
* View Pure Checker: Strictly enfore state mutability. This was already the case in the experimental 0.5.0 mode.