Skip to content

Commit 6afaac2

Browse files
committed
Windows: minor update of libv8 to fix a warning with rtools45
1 parent d2fc7ad commit 6afaac2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: V8
22
Type: Package
33
Title: Embedded JavaScript and WebAssembly Engine for R
4-
Version: 6.0.1
4+
Version: 6.0.2
55
Authors@R: c(
66
person("Jeroen", "Ooms", role = c("aut", "cre"), email = "[email protected]",
77
comment = c(ORCID = "0000-0002-4035-0289")),

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
6.0.2
2+
- Windows: minor update of libv8 to fix a warning with rtools45
3+
14
6.0.1
25
- Fix build for legacy libv8 versions on CondaForge and Centos-7
36

tools/winlibs.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
if(!file.exists('../windows/libv8/include/v8.h')){
22
unlink("../windows", recursive = TRUE)
33
url <- if(grepl("aarch", R.version$platform)){
4-
"https://github.com/r-windows/bundles/releases/download/v8-11.8.172.13/v8-11.8.172.13-clang-aarch64.tar.xz"
4+
"https://github.com/r-windows/bundles/releases/download/v8-11.9.169.6/v8-11.9.169.6-clang-aarch64.tar.xz"
55
} else if(grepl("clang", Sys.getenv('R_COMPILED_BY'))){
6-
"https://github.com/r-windows/bundles/releases/download/v8-11.8.172.13/v8-11.8.172.13-clang-x86_64.tar.xz"
6+
"https://github.com/r-windows/bundles/releases/download/v8-11.9.169.6/v8-11.9.169.6-clang-x86_64.tar.xz"
77
} else if(getRversion() >= "4.3") {
8-
"https://github.com/r-windows/bundles/releases/download/v8-11.8.172.13/v8-11.8.172.13-ucrt-x86_64.tar.xz"
8+
"https://github.com/r-windows/bundles/releases/download/v8-11.9.169.6/v8-11.9.169.6-ucrt-x86_64.tar.xz"
99
} else if(getRversion() >= "4.2") {
1010
"https://github.com/r-windows/bundles/releases/download/v8-11.8.172.13/v8-9.1.269.38-win-ucrt.tar.xz"
1111
} else {

0 commit comments

Comments
 (0)