1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

changelog: 0.2.1

This commit is contained in:
Alexander Medvednikov 2020-12-30 02:20:03 +01:00
parent ad78875a8c
commit 8e4152f053

View File

@ -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).