From 135b1ccb14699a458575f1d63aa8d1cd4afa3b7a Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 1 Nov 2022 05:41:13 +0300 Subject: [PATCH] V 0.3.2 --- CHANGELOG.md | 3 ++- v.mod | 2 +- vlib/semver/v.mod | 2 +- vlib/v/pkgconfig/README.md | 2 +- vlib/v/util/version/version.v | 2 +- vlib/v/vmod/parser_test.v | 4 ++-- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d59aa7137..b801a477e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## V 0.3.2 -*Not yet released* +*31 Oct 2022* +*Changelog is not full yet* - New stunnig playground with an improved look and feel, much better and responsive editor, code sharing by link, more convenient keyboard control, reusability for potential embedding: https://play.vlang.io. diff --git a/v.mod b/v.mod index 69ea2a500..6644dc6a4 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'V' description: 'The V programming language.' - version: '0.3.1' + version: '0.3.2' license: 'MIT' repo_url: 'https://github.com/vlang/v' dependencies: [] diff --git a/vlib/semver/v.mod b/vlib/semver/v.mod index 4d2777921..81d10e046 100644 --- a/vlib/semver/v.mod +++ b/vlib/semver/v.mod @@ -1,5 +1,5 @@ Module { name: 'semver' - version: '0.3.1' + version: '0.3.2' deps: [] } diff --git a/vlib/v/pkgconfig/README.md b/vlib/v/pkgconfig/README.md index e2c3df91f..74f99c4de 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.1 +pkgconfig 0.3.2 ----------------------------------------------- Usage: pkgconfig [options] [ARGS] diff --git a/vlib/v/util/version/version.v b/vlib/v/util/version/version.v index 5741c0ee8..6e8bd753e 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.1' +pub const v_version = '0.3.2' // 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 af134c48b..c9a9f1fad 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.1' + version: '0.3.2' 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.1' + assert content.version == '0.3.2' assert content.license == 'MIT' assert content.repo_url == 'https://github.com/vlang/v' assert content.dependencies == [] -- 2.30.2