aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-08-07 21:49:05 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-09-11 20:47:25 +0800
commit395ab9a872bd8fafc0da7ec166176715ce18eae9 (patch)
treeee8fea8f180df6599cf9ecb9ee581cbcafceed5d /Changelog.md
parent7d5c13981623f5f931444d227b163d9b0d995fd8 (diff)
downloaddexon-solidity-395ab9a872bd8fafc0da7ec166176715ce18eae9.tar.gz
dexon-solidity-395ab9a872bd8fafc0da7ec166176715ce18eae9.tar.zst
dexon-solidity-395ab9a872bd8fafc0da7ec166176715ce18eae9.zip
Replace ``isConstructor`` field in the JSON AST by a ``kind`` field.
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 997c4069..507c3ce1 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -35,6 +35,7 @@ Breaking Changes:
* 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).
+ * JSON AST: Replace the ``isConstructor`` field by a new ``kind`` field, which can be ``constructor``, ``fallback`` or ``function``.
* Interface: Remove "clone contract" feature. The ``--clone-bin`` and ``--combined-json clone-bin`` commandline options are not available anymore.
* Name Resolver: Do not exclude public state variables when looking for conflicting declarations.
* Optimizer: Remove the no-op ``PUSH1 0 NOT AND`` sequence.