Skip to content

Commit 3953445

Browse files
committed
V 0.4.9
1 parent 76e17bd commit 3953445

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

CHANGELOG.md

-2
Original file line numberDiff line numberDiff line change
@@ -256,12 +256,10 @@
256256
- Fix printing fn call of returning c struct value (fix #23104) (#23106)
257257
- Fix array fixed comparison from fn return (fix #23071) (#23114)
258258
- Fix array map to fixed array (fix #23116) (#23118)
259-
- Fix sort fn definitions (fix #23120) (#23121)
260259
- Fix codegen for returning different option alias type (fix #23087) (#23125)
261260
- Fix for in for interface type (fix #23119) (#23127)
262261
- Fix codegen for generic selector expr (fix #22974) (#23132)
263262
- Fix different option alias type as fn arg (fix #23086) (#23131)
264-
- Move const and global logic to a separate file
265263
- Fix codegen for returning option reference from indexexpr (fix #23133) (#23139)
266264
- Fix array fixed auto str on `-cstrict` (#23144)
267265
- Fix codegen for array append on indexexpr (fix #23156) (#23160)

v.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Module {
22
name: 'V'
33
description: 'The V programming language.'
4-
version: '0.4.8'
4+
version: '0.4.9'
55
license: 'MIT'
66
repo_url: 'https://github.com/vlang/v'
77
dependencies: []

vlib/semver/v.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Module {
22
name: 'semver'
3-
version: '0.4.8'
3+
version: '0.4.9'
44
deps: []
55
}

vlib/v/util/version/version.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module version
22

33
import os
44

5-
pub const v_version = '0.4.8'
5+
pub const v_version = '0.4.9'
66

77
pub fn full_hash() string {
88
build_hash := vhash()

0 commit comments

Comments
 (0)