Skip to content

Commit

Permalink
0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Jan 22, 2021
1 parent 43d56cb commit 46cdf4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 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.2.1'
version: '0.2.2'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
Expand Down
4 changes: 3 additions & 1 deletion vlib/v/tests/vmod_parser_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ fn test_from_file() {
data := vmod.from_file('./v.mod') or { panic(err) }
assert data.name == 'V'
assert data.description == 'The V programming language.'
assert data.version == '0.2.1'
//assert data.version == '0.2.1'
assert data.version.contains('.')
assert data.version.starts_with('0.')
assert data.dependencies.len == 0
}

Expand Down
2 changes: 1 addition & 1 deletion vlib/v/util/util.v
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import v.vmod
import v.util.recompilation

pub const (
v_version = '0.2.1'
v_version = '0.2.2'
)

// math.bits is needed by strconv.ftoa
Expand Down

0 comments on commit 46cdf4f

Please sign in to comment.