aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-11-21 18:18:04 +0800
committerchriseth <c@ethdev.com>2016-11-21 18:18:04 +0800
commit5bb050a7390be03ec026554cc5307eac3010365d (patch)
tree8591adab399a64e22dd2021b320166613100c84d
parent78e8521be7cbab5a47c986c1d2cb6f670d824545 (diff)
downloaddexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar.gz
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar.bz2
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar.lz
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar.xz
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.tar.zst
dexon-solidity-5bb050a7390be03ec026554cc5307eac3010365d.zip
Update changelog.
-rw-r--r--Changelog.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Changelog.md b/Changelog.md
index 6d080556..abd8d593 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,8 +1,8 @@
-### 0.4.5 (unreleased)
+### 0.4.5 (2016-11-21)
Features:
* Function types
- * Do-while loops: support for a C-style do{<block>}while(<expr>); control structure
+ * Do-while loops: support for a ``do <block> while (<expr>);`` control structure
* Inline assembly: support ``invalidJumpLabel`` as a jump label.
* Type checker: now more eagerly searches for a common type of an inline array with mixed types
* Code generator: generates a runtime error when an out-of-range value is converted into an enum type.
@@ -10,7 +10,7 @@ Features:
Bugfixes:
* Inline assembly: calculate stack height warning correctly even when local variables are used.
- * Support the ``payable`` keyword on constructors.
+ * Code generator: check for value transfer in non-payable constructors.
* Parser: disallow empty enum definitions.
* Type checker: disallow conversion between different enum types.
* Interface JSON: do not include trailing new line.