Skip to content

Commit

Permalink
V 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jun 29, 2023
1 parent 1c8adc8 commit 015ccc2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion v.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Module {
name: 'V'
description: 'The V programming language.'
version: '0.3.4'
version: '0.3.5'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
Expand Down
2 changes: 1 addition & 1 deletion vlib/semver/v.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Module {
name: 'semver'
version: '0.3.4'
version: '0.3.5'
deps: []
}
2 changes: 1 addition & 1 deletion vlib/v/util/version/version.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module version

import os

pub const v_version = '0.3.4'
pub const v_version = '0.3.5'

// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
pub fn vhash() string {
Expand Down
4 changes: 2 additions & 2 deletions vlib/v/vmod/parser_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fn test_ok() {
ok_source := "Module {
name: 'V'
description: 'The V programming language.'
version: '0.3.4'
version: '0.3.5'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
Expand All @@ -18,7 +18,7 @@ fn test_ok() {
content := vmod.decode(s)?
assert content.name == 'V'
assert content.description == 'The V programming language.'
assert content.version == '0.3.4'
assert content.version == '0.3.5'
assert content.license == 'MIT'
assert content.repo_url == 'https://github.com/vlang/v'
assert content.dependencies == []
Expand Down

0 comments on commit 015ccc2

Please sign in to comment.