Skip to content

Commit

Permalink
v0.1.29
Browse files Browse the repository at this point in the history
  • Loading branch information
medvednikov committed Aug 6, 2020
1 parent 4568ce8 commit ce4ee2b
Show file tree
Hide file tree
Showing 3 changed files with 3 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.1.28',
version: '0.1.29',
repo_url: 'https://github.com/vlang/v',
dependencies: []
}
2 changes: 1 addition & 1 deletion vlib/v/tests/vmod_parser_test.v
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fn test_from_file() {
}
assert data.name == 'V'
assert data.description == 'The V programming language.'
assert data.version == '0.1.28'
assert data.version == '0.1.29'
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 @@ -7,7 +7,7 @@ import os
import v.pref

pub const (
v_version = '0.1.28'
v_version = '0.1.29'
)

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

0 comments on commit ce4ee2b

Please sign in to comment.