pull/5416/head 0.1.28
Alexander Medvednikov 2020-06-18 15:57:53 +02:00
parent 1d28d45c5c
commit 7be952605b
3 changed files with 20 additions and 16 deletions

2
v.mod
View File

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

View File

@ -6,7 +6,7 @@ fn test_from_file() {
}
assert data.name == 'V'
assert data.description == 'The V programming language.'
assert data.version == '0.1.27'
assert data.version == '0.1.28'
assert data.dependencies.len == 0
}

View File

@ -7,16 +7,20 @@ import os
import v.pref
pub const (
v_version = '0.1.27'
v_version = '0.1.28'
)
// math.bits is needed by strconv.ftoa
pub const (
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash.wyhash', 'strings', 'builtin']
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash.wyhash', 'strings',
'builtin'
]
)
pub const (
external_module_dependencies_for_tool = {'vdoc': ['markdown']}
external_module_dependencies_for_tool = {
'vdoc': ['markdown']
}
)
// vhash() returns the build string C.V_COMMIT_HASH . See cmd/tools/gen_vc.v .
@ -149,7 +153,7 @@ pub fn launch_tool(is_verbose bool, tool_name string, args []string) {
if should_compile {
emodules := external_module_dependencies_for_tool[tool_name]
for emodule in emodules {
util.check_module_is_installed(emodule, is_verbose) or {
check_module_is_installed(emodule, is_verbose) or {
panic(err)
}
}
@ -316,14 +320,14 @@ and the existing module `${modulename}` may still work.')
}
pub fn ensure_modules_for_all_tools_are_installed(is_verbose bool) {
for tool_name, tool_modules in external_module_dependencies_for_tool {
if is_verbose {
eprintln('Installing modules for tool: $tool_name ...')
}
for emodule in tool_modules {
util.check_module_is_installed(emodule, is_verbose) or {
panic(err)
}
}
}
for tool_name, tool_modules in external_module_dependencies_for_tool {
if is_verbose {
eprintln('Installing modules for tool: $tool_name ...')
}
for emodule in tool_modules {
check_module_is_installed(emodule, is_verbose) or {
panic(err)
}
}
}
}