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

Update CHANGELOG.md

This commit is contained in:
Delyan Angelov 2021-01-14 18:00:08 +02:00
parent f73500f2fe
commit 83c7a33d6c
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -12,6 +12,9 @@
- Support `[manualfree] fn f1(){}` and `[manualfree] module m1`, for functions doing their own memory management.
- Allow usage of `<` and `>` operators for struct in `.sort` method for arrays, i.e. `arr.sort(a < b)`.
- Auto generate assignment operators like `+=`, `-=`, `*=`, `/=` and `%=` if the operators are defined.
- Colorize and improve failing tests output.
- Fix `go` with a generic function: `go test<string>(c, 'abcd')`.
- Add comptime `x := $embed_file('v.png') println(x.len) println(ptr_str(x.data()))`.
## V 0.2.1
*30 Dec 2020*