aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2017-03-16 00:04:16 +0800
committerchriseth <c@ethdev.com>2017-03-16 00:04:16 +0800
commit4d2f73c00df7b41dc5ada57e2d6bb2ca63ae3840 (patch)
tree5d10a544a48c5e245d466ad268d8b897e0e334f2
parent0c8a766146cf1416143a5b1a66050b8d6c233907 (diff)
downloaddexon-solidity-4d2f73c00df7b41dc5ada57e2d6bb2ca63ae3840.tar.gz
dexon-solidity-4d2f73c00df7b41dc5ada57e2d6bb2ca63ae3840.tar.zst
dexon-solidity-4d2f73c00df7b41dc5ada57e2d6bb2ca63ae3840.zip
Finalize changelog.
-rw-r--r--Changelog.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md
index 98be69ce..f1158672 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,4 +1,4 @@
-### 0.4.10 (unreleased)
+### 0.4.10 (2017-03-15)
Features:
* Add ``assert(condition)``, which throws if condition is false (meant for internal errors).
@@ -10,6 +10,7 @@ Features:
* Parser: Support scientific notation in numbers (e.g. ``2e8`` and ``200e-2``).
* Type system: Support explicit conversion of external function to address.
* Type system: Warn if base of exponentiation is literal (result type might be unexpected).
+ * Type system: Warn if constant state variables are not compile-time constants.
Bugfixes:
* Commandline interface: Always escape filenames (replace ``/``, ``:`` and ``.`` with ``_``).
@@ -21,7 +22,6 @@ Bugfixes:
* Type system: Detect cyclic dependencies between constants.
* Type system: Disallow arrays with negative length.
* Type system: Fix a crash related to invalid binary operators.
- * Type system: Warn if constant state variables are not compile-time constants.
* Type system: Disallow ``var`` declaration with empty tuple type.
* Type system: Correctly convert function argument types to pointers for member functions.
* Type system: Move privateness of constructor into AST itself.