From d1f57ead713c8e5254d8cef22991e6409dc1f06b Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 30 Jan 2023 18:20:47 +0100 Subject: [PATCH] V 0.3.3 --- CHANGELOG.md | 26 ++++++++++++++++++++++++-- v.mod | 2 +- vlib/semver/v.mod | 2 +- vlib/v/pkgconfig/README.md | 2 +- vlib/v/pkgconfig/pkgconfig.v | 2 +- vlib/v/util/version/version.v | 2 +- vlib/v/vmod/parser_test.v | 4 ++-- 7 files changed, 31 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdbcf8a7d..399bc28e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,33 @@ ## V 0.3.3 -*Not yet released* +*30 Jan 2023* +**wip** - Accessing a pointer map value requires an `or {}` block outside `unsafe`. - `math.vec` module for generic vector math. - `go foo()` has been replaced with `spawn foo()` (launches an OS thread, `go` will be used for upcoming coroutines instead). -- vfmt now supports `// vfmt off` and `// vfmt on` for turning off the formatting locally for *short* snippets of code. Useful for keeping your carefully arranged matrices intact. +- vfmt now supports `// vfmt off` and `// vfmt on` for turning off the formatting locally for short snippets of code. + Useful for keeping your carefully arranged matrices intact. +- fast.vlang.io fixes & improvements, new server. +- String interpolation changed to just '${name}'. +- New official IntelliJ plugin: https://intellij-v.github.io. +- Lots of fixes in the type checker. - Match branch range expressions with consts: `match x { const1...const2 {} }` +- Builtin stb_image.h used by gg has been updated to the latest v2.28. +- Lots of new documentation, a nicer table of contents. +- All of vlib has been updated to use separate Option/Result types. +- To avoid confusion, all references in the code and documentation to `Optional` have been replaced with `Option`. +- `gg.Context` pipeile has more effects, including the `additive` effect. +- Hot code reloading via `[live]` is now supported in imported modules, not just the main module. +- VFS support in the builtin `sqlite` module; `sqlite.get_affected_rows_count()`. +- `make.bat` & `v up` improvements on Windows. +- Syntax sugar for map inits without needing explicit casts for interfaces: `all.children := { "abc": rect, "def": ui.rectangle()}`. +- `$embed_file()` fixes, including variable args support. +- `none` fixes: no longer allowed to be used as a separate type, `dump()` support, not allowed inside `unsafe`. +- Much cleaner eof checks in `os`: refactor `err == IError(os.Eof{})` to `err is os.Eof`. +- Const functions: `const y = term.yellow`, then `println(y('abc'))`. +- Lots of work on `x.json2`, the pure V json encoder, soon to become official. + + ## V 0.3.2 *31 Oct 2022* diff --git a/v.mod b/v.mod index 6644dc6a4..3bf580061 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'V' description: 'The V programming language.' - version: '0.3.2' + version: '0.3.3' license: 'MIT' repo_url: 'https://github.com/vlang/v' dependencies: [] diff --git a/vlib/semver/v.mod b/vlib/semver/v.mod index 81d10e046..e3fdd7e3d 100644 --- a/vlib/semver/v.mod +++ b/vlib/semver/v.mod @@ -1,5 +1,5 @@ Module { name: 'semver' - version: '0.3.2' + version: '0.3.3' deps: [] } diff --git a/vlib/v/pkgconfig/README.md b/vlib/v/pkgconfig/README.md index 74f99c4de..23a29668c 100644 --- a/vlib/v/pkgconfig/README.md +++ b/vlib/v/pkgconfig/README.md @@ -25,7 +25,7 @@ The commandline tool is available in `vlib/v/pkgconfig/bin/pkgconfig.v` ``` $ ./bin/pkgconfig -h -pkgconfig 0.3.2 +pkgconfig 0.3.3 ----------------------------------------------- Usage: pkgconfig [options] [ARGS] diff --git a/vlib/v/pkgconfig/pkgconfig.v b/vlib/v/pkgconfig/pkgconfig.v index 384dd70d3..090b5fae7 100644 --- a/vlib/v/pkgconfig/pkgconfig.v +++ b/vlib/v/pkgconfig/pkgconfig.v @@ -18,7 +18,7 @@ const ( '/usr/local/libdata/pkgconfig', // FreeBSD '/usr/lib/i386-linux-gnu/pkgconfig', // Debian 32bit ] - version = '0.3.2' + version = '0.3.3' ) pub struct Options { diff --git a/vlib/v/util/version/version.v b/vlib/v/util/version/version.v index 0563240d7..a9d6b1487 100644 --- a/vlib/v/util/version/version.v +++ b/vlib/v/util/version/version.v @@ -2,7 +2,7 @@ module version import os -pub const v_version = '0.3.2' +pub const v_version = '0.3.3' // vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v . pub fn vhash() string { diff --git a/vlib/v/vmod/parser_test.v b/vlib/v/vmod/parser_test.v index c644e8616..01bb3d684 100644 --- a/vlib/v/vmod/parser_test.v +++ b/vlib/v/vmod/parser_test.v @@ -8,7 +8,7 @@ fn test_ok() { ok_source := "Module { name: 'V' description: 'The V programming language.' - version: '0.3.2' + version: '0.3.3' license: 'MIT' repo_url: 'https://github.com/vlang/v' dependencies: [] @@ -18,7 +18,7 @@ fn test_ok() { content := vmod.decode(s)? assert content.name == 'V' assert content.description == 'The V programming language.' - assert content.version == '0.3.2' + assert content.version == '0.3.3' assert content.license == 'MIT' assert content.repo_url == 'https://github.com/vlang/v' assert content.dependencies == [] -- 2.30.2