mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
V 0.4.9
This commit is contained in:
parent
76e17bd74b
commit
3953445988
@ -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)
|
||||
|
2
v.mod
2
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: []
|
||||
|
@ -1,5 +1,5 @@
|
||||
Module {
|
||||
name: 'semver'
|
||||
version: '0.4.8'
|
||||
version: '0.4.9'
|
||||
deps: []
|
||||
}
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user