This commit is contained in:
Alexander Medvednikov 2024-12-22 03:48:41 +03:00
parent 76e17bd74b
commit 3953445988
4 changed files with 3 additions and 5 deletions

View File

@ -256,12 +256,10 @@
- Fix printing fn call of returning c struct value (fix #23104) (#23106) - Fix printing fn call of returning c struct value (fix #23104) (#23106)
- Fix array fixed comparison from fn return (fix #23071) (#23114) - Fix array fixed comparison from fn return (fix #23071) (#23114)
- Fix array map to fixed array (fix #23116) (#23118) - 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 codegen for returning different option alias type (fix #23087) (#23125)
- Fix for in for interface type (fix #23119) (#23127) - Fix for in for interface type (fix #23119) (#23127)
- Fix codegen for generic selector expr (fix #22974) (#23132) - Fix codegen for generic selector expr (fix #22974) (#23132)
- Fix different option alias type as fn arg (fix #23086) (#23131) - 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 codegen for returning option reference from indexexpr (fix #23133) (#23139)
- Fix array fixed auto str on `-cstrict` (#23144) - Fix array fixed auto str on `-cstrict` (#23144)
- Fix codegen for array append on indexexpr (fix #23156) (#23160) - Fix codegen for array append on indexexpr (fix #23156) (#23160)

2
v.mod
View File

@ -1,7 +1,7 @@
Module { Module {
name: 'V' name: 'V'
description: 'The V programming language.' description: 'The V programming language.'
version: '0.4.8' version: '0.4.9'
license: 'MIT' license: 'MIT'
repo_url: 'https://github.com/vlang/v' repo_url: 'https://github.com/vlang/v'
dependencies: [] dependencies: []

View File

@ -1,5 +1,5 @@
Module { Module {
name: 'semver' name: 'semver'
version: '0.4.8' version: '0.4.9'
deps: [] deps: []
} }

View File

@ -2,7 +2,7 @@ module version
import os import os
pub const v_version = '0.4.8' pub const v_version = '0.4.9'
pub fn full_hash() string { pub fn full_hash() string {
build_hash := vhash() build_hash := vhash()