diff --git a/CHANGELOG.md b/CHANGELOG.md index a53b0c3cfc..62816c1f9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## 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 }`). - 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. diff --git a/compiler/main.v b/compiler/main.v index a28337130f..b7d0f9569e 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -9,7 +9,7 @@ import time import strings const ( - Version = '0.1.16' + Version = '0.1.17' ) enum BuildMode {