aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-09-27 21:11:44 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-10-05 18:42:34 +0800
commit09276cb9d3589493176bc45b2075517c2087d75b (patch)
tree2eff98e42245b9d33cd63a4f95567c13f862376b /Changelog.md
parent880be2581108f570d0824352ff7221c8cae3a998 (diff)
downloaddexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar.gz
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar.bz2
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar.lz
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar.xz
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.tar.zst
dexon-solidity-09276cb9d3589493176bc45b2075517c2087d75b.zip
Do not add members of address to contracts in experimental 0.5.0
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/Changelog.md b/Changelog.md
index 8f97b0e8..ace9bc36 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,13 +1,14 @@
### 0.4.18 (unreleased)
Features:
+ * Code Generator: Always use all available gas for calls as experimental 0.5.0 feature
+ (previously, some amount was retained in order to work in pre-tangerine whistle
+ EVM versions)
* Parser: Better error message for unexpected trailing comma in parameter lists.
* Standard JSON: Support the ``outputSelection`` field for selective compilation of supplied sources.
* Syntax Checker: Unary ``+`` is now a syntax error as experimental 0.5.0 feature.
* Type Checker: Disallow non-pure constant state variables as experimental 0.5.0 feature.
- * Code Generator: Always use all available gas for calls as experimental 0.5.0 feature
- (previously, some amount was retained in order to work in pre-tangerine whistle
- EVM versions)
+ * Type Checker: Do not add members of ``address`` to contracts as experimental 0.5.0 feature.
Bugfixes:
* Parser: Fix source location of VariableDeclarationStatement.