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-11-01 05:41:13 +03:00
parent 1b721250e0
commit 135b1ccb14
6 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,6 @@
## V 0.3.2 ## V 0.3.2
*Not yet released* *31 Oct 2022*
*Changelog is not full yet*
- New stunnig playground with an improved look and feel, much better and responsive editor, - New stunnig playground with an improved look and feel, much better and responsive editor,
code sharing by link, more convenient keyboard control, reusability for potential embedding: code sharing by link, more convenient keyboard control, reusability for potential embedding:
https://play.vlang.io. https://play.vlang.io.

2
v.mod
View File

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

View File

@ -1,5 +1,5 @@
Module { Module {
name: 'semver' name: 'semver'
version: '0.3.1' version: '0.3.2'
deps: [] deps: []
} }

View File

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

View File

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

View File

@ -8,7 +8,7 @@ fn test_ok() {
ok_source := "Module { ok_source := "Module {
name: 'V' name: 'V'
description: 'The V programming language.' description: 'The V programming language.'
version: '0.3.1' version: '0.3.2'
license: 'MIT' license: 'MIT'
repo_url: 'https://github.com/vlang/v' repo_url: 'https://github.com/vlang/v'
dependencies: [] dependencies: []
@ -18,7 +18,7 @@ fn test_ok() {
content := vmod.decode(s)? content := vmod.decode(s)?
assert content.name == 'V' assert content.name == 'V'
assert content.description == 'The V programming language.' assert content.description == 'The V programming language.'
assert content.version == '0.3.1' assert content.version == '0.3.2'
assert content.license == 'MIT' assert content.license == 'MIT'
assert content.repo_url == 'https://github.com/vlang/v' assert content.repo_url == 'https://github.com/vlang/v'
assert content.dependencies == [] assert content.dependencies == []