pull/1369/head 0.1.17
Alexander Medvednikov 2019-07-29 18:31:47 +02:00
parent ce1288e946
commit 54f847a85b
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
## V 0.1.17 ## V 0.1.17
*29 Jul 2019*
- `vweb` module for developing web apps in V.
- vtalk, open source V forum software.
- Generics (very limited right now, but they will be gradually improved).
- Comptime codegen (`foo.$method()` where `method` is a string).
- @ for escaping keywords (e.g. `struct Foo { @type string }`). - @ for escaping keywords (e.g. `struct Foo { @type string }`).
- Windows Unicode fixes (V can now work with non-ASCII paths etc on Windows). - Windows Unicode fixes (V can now work with non-ASCII paths etc on Windows).
- Fix mutable args bugs + don't allow primitive arguments to be modified. - Fix mutable args bugs + don't allow primitive arguments to be modified.

View File

@ -9,7 +9,7 @@ import time
import strings import strings
const ( const (
Version = '0.1.16' Version = '0.1.17'
) )
enum BuildMode { enum BuildMode {