aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-07 00:55:12 +0800
committerGitHub <noreply@github.com>2018-08-07 00:55:12 +0800
commit276724dedc32e8d30500dcb9927bcff708093067 (patch)
tree8ab1d73cd45dbd049403885224d65e4cc4e5c880 /Changelog.md
parent1fb2d6aa856d4ab62050d8b527a9044e7cca5a80 (diff)
parentbdd86cb39c30fb129b6f429af7a3d4999473f3de (diff)
downloaddexon-solidity-276724dedc32e8d30500dcb9927bcff708093067.tar.gz
dexon-solidity-276724dedc32e8d30500dcb9927bcff708093067.tar.zst
dexon-solidity-276724dedc32e8d30500dcb9927bcff708093067.zip
Merge pull request #4663 from ethereum/dropConstantAST
[BREAKING] Drop constant field from JSON AST
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 1cc2ee4a..aa2dce18 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -33,6 +33,7 @@ Breaking Changes:
* General: Remove assembly instruction aliases ``sha3`` and ``suicide``
* General: C99-style scoping rules are enforced now. This was already the case in the experimental 0.5.0 mode.
* General: Disallow combining hex numbers with unit denominations (e.g. ``0x1e wei``). This was already the case in the experimental 0.5.0 mode.
+ * JSON AST: Remove ``constant`` and ``payable`` fields (the information is encoded in the ``stateMutability`` field).
* Name Resolver: Do not exclude public state variables when looking for conflicting declarations.
* Optimizer: Remove the no-op ``PUSH1 0 NOT AND`` sequence.
* Parser: Disallow trailing dots that are not followed by a number.