aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-08-24 21:53:13 +0800
committerGitHub <noreply@github.com>2017-08-24 21:53:13 +0800
commitd3fd6a8800ddd15be509971b516bb823bbd93b86 (patch)
tree49ef0252dd6902d46aed69b581494984e4697c41 /Changelog.md
parent65d78f36c1f5b88546261bc005ef952065d34adf (diff)
parentf646247dfb7d398255b3e2cc1aa6e25fe8424af3 (diff)
downloaddexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar.gz
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar.bz2
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar.lz
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar.xz
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.tar.zst
dexon-solidity-d3fd6a8800ddd15be509971b516bb823bbd93b86.zip
Merge pull request #2745 from ethereum/statemutability-pure
Introduce pure specifier on functions
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Changelog.md b/Changelog.md
index 1ea3f6c8..8c540a28 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,7 +1,8 @@
### 0.4.16 (unreleased)
Features:
- * ABI JSON: Include new field ``statemutability`` with values ``view``, ``nonpayable`` and ``payable``.
+ * Introduce ``pure`` functions. The pureness is not enforced yet, use with care.
+ * ABI JSON: Include new field ``statemutability`` with values ``pure``, ``view``, ``nonpayable`` and ``payable``.
* Analyzer: Experimental partial support for Z3 SMT checker.
* Parser: Display previous visibility specifier in error if multiple are found.
* Parser: Introduce ``view`` keyword on functions (``constant`` remains an alias for ``view``).