1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
Alexander Medvednikov
2022-08-31 19:24:45 +03:00
parent fef26a0b19
commit f2f6ea5969
6 changed files with 44 additions and 13 deletions

View File

@@ -25,7 +25,7 @@ The commandline tool is available in `vlib/v/pkgconfig/bin/pkgconfig.v`
```
$ ./bin/pkgconfig -h
pkgconfig 0.3.0
pkgconfig 0.3.1
-----------------------------------------------
Usage: pkgconfig [options] [ARGS]

View File

@@ -2,7 +2,7 @@ module version
import os
pub const v_version = '0.3.0'
pub const v_version = '0.3.1'
// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
pub fn vhash() string {

View File

@@ -8,7 +8,7 @@ fn test_ok() ? {
ok_source := "Module {
name: 'V'
description: 'The V programming language.'
version: '0.3.0'
version: '0.3.1'
license: 'MIT'
repo_url: 'https://github.com/vlang/v'
dependencies: []
@@ -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.0'
assert content.version == '0.3.1'
assert content.license == 'MIT'
assert content.repo_url == 'https://github.com/vlang/v'
assert content.dependencies == []