Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit 7a1cfa6

Browse files
committed
Merge tag 'v0.4.3'
ggvis 0.4.3 on CRAN
2 parents 0437ede + 635c59e commit 7a1cfa6

File tree

9 files changed

+144
-51
lines changed

9 files changed

+144
-51
lines changed

.Rbuildignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ man-roxygen
44
bench
55
^\.travis\.yml$
66
^node_modules$
7-
^NEWS\.md$
87
^CONTRIBUTING\.md$
98
^revdep$
109
^cran-comments\.md$

DESCRIPTION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Title: Interactive Grammar of Graphics
33
Description: An implementation of an interactive grammar of graphics, taking the
44
best parts of 'ggplot2', combining them with the reactive framework of
55
'shiny' and drawing web graphics using 'vega'.
6-
Version: 0.4.2.9000
6+
Version: 0.4.3
77
Authors@R: c(
88
person("Winston", "Chang", role = c("aut", "cre"), email = "winston@rstudio.com"),
99
person("Hadley", "Wickham", role = "aut", email = "hadley@rstudio.com"),
@@ -43,7 +43,6 @@ Suggests:
4343
testthat (>= 0.8.1),
4444
knitr (>= 1.6),
4545
rmarkdown
46-
VignetteBuilder: knitr
4746
Encoding: UTF-8
4847
License: GPL-2 | file LICENSE
4948
LazyData: true

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ggvis 0.4.2.9xxx
1+
# ggvis 0.4.3
22

33
* Switched from stripped-down build of jQuery UI to a full build. (#410)
44

cran-comments.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
## Test environments
2-
* local OS X install, R 3.2.0
3-
* ubuntu 12.04 (on travis-ci), R 3.2.0
2+
* local OS X install, R 3.3.0
3+
* ubuntu 12.04 (on travis-ci), R 3.3.0
44
* win-builder (devel and release)
55

66
## R CMD check results
77
There were no ERRORs, WARNINGs or NOTEs.
88

99
## Downstream dependencies
10-
I have also run R CMD check on all 1 downstream dependency of ggvis.
11-
(https://github.com/rstudio/ggvis/master/revdep/summary.md). It passed without
12-
problems.
10+
I have also run R CMD check on all 2 downstream dependencies of ggvis. (https://github.com/rstudio/ggvis/master/revdep/README.md). One package, mlr, had errors, which I believe are related to Java and not to ggvis. (On CRAN, the checks for mlr also have errors.)

revdep/README.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Setup
2+
3+
## Platform
4+
5+
|setting |value |
6+
|:--------|:----------------------------|
7+
|version |R version 3.3.0 (2016-05-03) |
8+
|system |x86_64, darwin13.4.0 |
9+
|ui |X11 |
10+
|language |(EN) |
11+
|collate |en_US.UTF-8 |
12+
|tz |America/Chicago |
13+
|date |2016-07-22 |
14+
15+
## Packages
16+
17+
|package |* |version |date |source |
18+
|:--------|:--|:----------|:----------|:--------------------------------|
19+
|ggvis | |0.4.3 |2016-07-22 |local (@5b391f3) |
20+
|testthat |* |1.0.2.9000 |2016-07-22 |Github (hadley/testthat@46d15da) |
21+
22+
# Check results
23+
2 packages
24+
25+
## mlr (2.8)
26+
Maintainer: Bernd Bischl <bernd_bischl@gmx.net>
27+
Bug reports: https://github.com/mlr-org/mlr/issues
28+
29+
2 errors | 0 warnings | 0 notes
30+
31+
```
32+
checking examples ... ERROR
33+
Running examples in ‘mlr-Ex.R’ failed
34+
The error most likely occurred in:
35+
36+
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
37+
> ### Name: plotFilterValues
38+
> ### Title: Plot filter values using ggplot2.
39+
> ### Aliases: plotFilterValues
40+
>
41+
> ### ** Examples
42+
>
43+
> fv = generateFilterValuesData(iris.task, method = "chi.squared")
44+
Error in .jnew("weka/core/Attribute", attname[i], .jcast(levels, "java/util/List")) :
45+
java.lang.UnsupportedClassVersionError: weka/core/Attribute : Unsupported major.minor version 51.0
46+
Calls: generateFilterValuesData ... read_model_frame_into_Weka -> read_data_into_Weka -> .jnew -> .External
47+
Execution halted
48+
** found \donttest examples: check also with --run-donttest
49+
50+
checking tests ... ERROR
51+
Running the tests in ‘tests/run-base.R’ failed.
52+
Last 13 lines of output:
53+
makeLearner("classif.__mlrmocklearners__5") did not throw an error.
54+
55+
56+
Timing stopped at: 0.021 0.002 0.015
57+
Error in ._jobjRef_dollar(x[["jobj"]], name) :
58+
no field, method or inner class called 'handled'
59+
Calls: test_check ... <Anonymous> -> isTRUE -> $ -> $.Throwable -> ._jobjRef_dollar
60+
testthat results ================================================================
61+
OK: 67 SKIPPED: 0 FAILED: 1
62+
1. Failure: Learner (@test_base_Learner.R#26)
63+
64+
Error: testthat unit tests failed
65+
Execution halted
66+
```
67+
68+
## subspace (1.0.4)
69+
Maintainer: Marwan Hassani <rsubspace@cs.rwth-aachen.de>
70+
71+
0 errors | 0 warnings | 0 notes
72+

revdep/check.R

Lines changed: 0 additions & 4 deletions
This file was deleted.

revdep/checks.rds

1.42 KB
Binary file not shown.

revdep/problems.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Setup
2+
3+
## Platform
4+
5+
|setting |value |
6+
|:--------|:----------------------------|
7+
|version |R version 3.3.0 (2016-05-03) |
8+
|system |x86_64, darwin13.4.0 |
9+
|ui |X11 |
10+
|language |(EN) |
11+
|collate |en_US.UTF-8 |
12+
|tz |America/Chicago |
13+
|date |2016-07-22 |
14+
15+
## Packages
16+
17+
|package |* |version |date |source |
18+
|:--------|:--|:----------|:----------|:--------------------------------|
19+
|ggvis | |0.4.3 |2016-07-22 |local (@5b391f3) |
20+
|testthat |* |1.0.2.9000 |2016-07-22 |Github (hadley/testthat@46d15da) |
21+
22+
# Check results
23+
1 packages with problems
24+
25+
## mlr (2.8)
26+
Maintainer: Bernd Bischl <bernd_bischl@gmx.net>
27+
Bug reports: https://github.com/mlr-org/mlr/issues
28+
29+
2 errors | 0 warnings | 0 notes
30+
31+
```
32+
checking examples ... ERROR
33+
Running examples in ‘mlr-Ex.R’ failed
34+
The error most likely occurred in:
35+
36+
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
37+
> ### Name: plotFilterValues
38+
> ### Title: Plot filter values using ggplot2.
39+
> ### Aliases: plotFilterValues
40+
>
41+
> ### ** Examples
42+
>
43+
> fv = generateFilterValuesData(iris.task, method = "chi.squared")
44+
Error in .jnew("weka/core/Attribute", attname[i], .jcast(levels, "java/util/List")) :
45+
java.lang.UnsupportedClassVersionError: weka/core/Attribute : Unsupported major.minor version 51.0
46+
Calls: generateFilterValuesData ... read_model_frame_into_Weka -> read_data_into_Weka -> .jnew -> .External
47+
Execution halted
48+
** found \donttest examples: check also with --run-donttest
49+
50+
checking tests ... ERROR
51+
Running the tests in ‘tests/run-base.R’ failed.
52+
Last 13 lines of output:
53+
makeLearner("classif.__mlrmocklearners__5") did not throw an error.
54+
55+
56+
Timing stopped at: 0.021 0.002 0.015
57+
Error in ._jobjRef_dollar(x[["jobj"]], name) :
58+
no field, method or inner class called 'handled'
59+
Calls: test_check ... <Anonymous> -> isTRUE -> $ -> $.Throwable -> ._jobjRef_dollar
60+
testthat results ================================================================
61+
OK: 67 SKIPPED: 0 FAILED: 1
62+
1. Failure: Learner (@test_base_Learner.R#26)
63+
64+
Error: testthat unit tests failed
65+
Execution halted
66+
```
67+

revdep/summary.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)