From 3d2731fca7d663d0ce0d5038af7331e55420e3c2 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sun, 3 Sep 2023 22:42:32 +0300 Subject: [PATCH] V 0.4.1 --- v.mod | 2 +- vlib/semver/v.mod | 2 +- vlib/v/util/version/version.v | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/v.mod b/v.mod index c9915b87f3..648ea3f4e5 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'V' description: 'The V programming language.' - version: '0.4.0' + version: '0.4.1' license: 'MIT' repo_url: 'https://github.com/vlang/v' dependencies: [] diff --git a/vlib/semver/v.mod b/vlib/semver/v.mod index 9dce2a1406..3f9af6e722 100644 --- a/vlib/semver/v.mod +++ b/vlib/semver/v.mod @@ -1,5 +1,5 @@ Module { name: 'semver' - version: '0.4.0' + version: '0.4.1' deps: [] } diff --git a/vlib/v/util/version/version.v b/vlib/v/util/version/version.v index 82f3126b9b..b16f8f2339 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.4.0' +pub const v_version = '0.4.1' // vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v . pub fn vhash() string {