From 8902256592258ec3b9d391dc52d5ae7166c037bc Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 15 Jul 2019 23:56:18 +0200 Subject: [PATCH] V 0.1.15 --- CHANGELOG.md | 16 ++++++++++++++++ compiler/main.v | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c05402946..b6cca27f21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## V 0.1.15 +*15 Jul 2019* +- FreeBSD, OpenBSD, NetBSD, DragonFly support. +- Hot code reloading now works with graphical applications: + [bounce.v](https://github.com/vlang/v/blob/master/examples/hot_code_reloading/bounce.v) +- VROOT was removed, the installation process is now much simpler. +- `defer` statement +- map.v was re-written. It's now much faster. +- `for key, val in map` syntax. +- `flag` module for parsing command line arguments. +- `zip` module. +- `crypto/sha1` module. +- Submodules and module aliases (`import encoding/base64 as b64`). + + + ## V 0.1.14 *12 Jul 2019* diff --git a/compiler/main.v b/compiler/main.v index bbf2f0da6a..ebf225a4ae 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -9,7 +9,7 @@ import time import strings const ( - Version = '0.1.14' + Version = '0.1.15' ) enum BuildMode {