aboutsummaryrefslogtreecommitdiffstats
path: root/Changelog.md
diff options
context:
space:
mode:
Diffstat (limited to 'Changelog.md')
-rw-r--r--Changelog.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/Changelog.md b/Changelog.md
index 9bed7e9c..c31aced2 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,9 +1,26 @@
### 0.5.0 (unreleased)
+Breaking Changes:
+ * Disallow conversions between bytesX and uintY of different size.
+ * Commandline interface: Require ``-`` if standard input is used as source.
+ * General: ``continue`` in a ``do...while`` loop jumps to the condition (it used to jump to the loop body). Warning: this may silently change the semantics of existing code.
+ * Type Checker: Disallow arithmetic operations for Boolean variables.
+
+Features:
+
+Bugfixes:
+
+
+
+Features:
+
+
+Bugfixes:
### 0.4.24 (2018-05-16)
+
Language Features:
* Code Generator: Use native shift instructions on target Constantinople.
* General: Allow multiple variables to be declared as part of a tuple assignment, e.g. ``(uint a, uint b) = ...``.