diff --git a/CHANGELOG.md b/CHANGELOG.md index fd494a5fe1ea62..3ec69e6cacbf50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -256,12 +256,10 @@ - Fix printing fn call of returning c struct value (fix #23104) (#23106) - Fix array fixed comparison from fn return (fix #23071) (#23114) - Fix array map to fixed array (fix #23116) (#23118) -- Fix sort fn definitions (fix #23120) (#23121) - Fix codegen for returning different option alias type (fix #23087) (#23125) - Fix for in for interface type (fix #23119) (#23127) - Fix codegen for generic selector expr (fix #22974) (#23132) - Fix different option alias type as fn arg (fix #23086) (#23131) -- Move const and global logic to a separate file - Fix codegen for returning option reference from indexexpr (fix #23133) (#23139) - Fix array fixed auto str on `-cstrict` (#23144) - Fix codegen for array append on indexexpr (fix #23156) (#23160) diff --git a/v.mod b/v.mod index 540d3fb163d895..614a6636dd1d8e 100644 --- a/v.mod +++ b/v.mod @@ -1,7 +1,7 @@ Module { name: 'V' description: 'The V programming language.' - version: '0.4.8' + version: '0.4.9' license: 'MIT' repo_url: 'https://github.com/vlang/v' dependencies: [] diff --git a/vlib/semver/v.mod b/vlib/semver/v.mod index 04a0f2f8bd468c..f82e348057291c 100644 --- a/vlib/semver/v.mod +++ b/vlib/semver/v.mod @@ -1,5 +1,5 @@ Module { name: 'semver' - version: '0.4.8' + version: '0.4.9' deps: [] } diff --git a/vlib/v/util/version/version.v b/vlib/v/util/version/version.v index 5d3509e3bda403..50679e42800da4 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.8' +pub const v_version = '0.4.9' pub fn full_hash() string { build_hash := vhash()