aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-10-09 04:47:29 +0800
committerchriseth <chris@ethereum.org>2018-10-09 04:47:29 +0800
commitede937999c5273aa6a11732991ef7cefdf70f21d (patch)
tree9ea08a871662353fa614daaeaeff3fcf913efe57 /docs
parent7ff9a27979a53a0b844db2dda12a54ee4a68cf5e (diff)
downloaddexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar.gz
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar.bz2
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar.lz
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar.xz
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.tar.zst
dexon-solidity-ede937999c5273aa6a11732991ef7cefdf70f21d.zip
Add entry into the breaking changes list.
Diffstat (limited to 'docs')
-rw-r--r--docs/050-breaking-changes.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/050-breaking-changes.rst b/docs/050-breaking-changes.rst
index 9094000e..93f099ca 100644
--- a/docs/050-breaking-changes.rst
+++ b/docs/050-breaking-changes.rst
@@ -154,6 +154,10 @@ Command Line and JSON Interfaces
* The JSON AST fields ``constant`` and ``payable`` were removed. The
information is now present in the ``stateMutability`` field.
+* The JSON AST field ``isConstructor`` of the ``FunctionDefinition``
+ node was replaced by a field called ``kind`` which can have the
+ value ``"constructor"``, ``"fallback"`` or ``"function"``.
+
Constructors
------------