From 8e4152f053052cc9a5bf06aa95b45e8d9b6bd457 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 30 Dec 2020 02:20:03 +0100 Subject: [PATCH] changelog: 0.2.1 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b7fe99e49..e8228d14ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## V 0.2.2 +*Not yet released* +- Consts can now be declared outside of `const()` blocks: `const x = 0`. + +## V 0.2.1 +- Hashmap bootstrapping fixes. +- Array decomposition to varargs: `fn sum(i ...int) int` => `a := [2,3,4] println(sum(a...))` +- HTML module docs generated by vdoc now have global search. + + ## V 0.2 *22 Dec 2020* - Compile-time memory management via `-autofree`. [Video demonstration](https://www.youtube.com/watch?v=gmB8ea8uLsM).