pull/7013/head
Alexander Medvednikov 2020-11-28 04:42:27 +01:00
parent 86b5f7ef5d
commit ed39d151b7
4 changed files with 15 additions and 11 deletions

View File

@ -1,3 +1,8 @@
## V 0.1.30
*28 Nov 2020*
(V 0.2 RC)
TODO
## V 0.1.27 ## V 0.1.27
*5 May 2020* *5 May 2020*

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.1.29' version: '0.1.30'
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,4 @@
import vmod import vmod
import os import os
fn test_from_file() { fn test_from_file() {
@ -9,7 +8,7 @@ fn test_from_file() {
} }
assert data.name == 'V' assert data.name == 'V'
assert data.description == 'The V programming language.' assert data.description == 'The V programming language.'
assert data.version == '0.1.29' assert data.version == '0.1.30'
assert data.dependencies.len == 0 assert data.dependencies.len == 0
} }

View File

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