pull/7695/head
Alexander Medvednikov 2020-12-29 21:24:26 +01:00
parent 291160c32d
commit e26a690975
3 changed files with 3 additions and 3 deletions

2
v.mod
View File

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

View File

@ -6,7 +6,7 @@ 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'
assert data.version == '0.2.1'
assert data.dependencies.len == 0
}

View File

@ -9,7 +9,7 @@ import v.pref
import v.vmod
pub const (
v_version = '0.2'
v_version = '0.2.1'
)
// math.bits is needed by strconv.ftoa