Skip to content

Commit 0a73795

Browse files
committed
Merge tag 'v1.0.1'
ggplot2 1.0.1 released to CRAN
2 parents a013492 + f1414d8 commit 0a73795

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ visual_test
55
^/\.gitattributes$
66
^inst/web$
77
^notes$
8+
^cran-comments.md$

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: ggplot2
22
Type: Package
33
Title: An Implementation of the Grammar of Graphics
4-
Version: 1.0.0.99
4+
Version: 1.0.1
55
Authors@R: c(
66
person("Hadley", "Wickham", role = c("aut", "cre"), email = "[email protected]"),
77
person("Winston", "Chang", role = "aut", email = "[email protected]")
@@ -13,7 +13,7 @@ Description: An implementation of the grammar of graphics
1313
plot step by step from multiple data sources. It also
1414
implements a sophisticated multidimensional
1515
conditioning system and a consistent interface to map
16-
data to aesthetic attributes. See the ggplot2 website
16+
data to aesthetic attributes. See http://ggplot2.org
1717
for more information, documentation and examples.
1818
Depends:
1919
R (>= 2.14),

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
ggplot2 1.0.1
2+
----------------------------------------------------------------
3+
4+
* Fixes to pass `R CMD check --run-donttest` in R-devel.
5+
16
ggplot2 1.0.0
27
----------------------------------------------------------------
38

R/guide-colorbar.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
#' scale_size(guide = guide_legend(direction = "vertical"))
9191
guide_colourbar <- function(
9292

93-
# title
93+
# title
9494
title = waiver(),
9595
title.position = NULL,
9696
title.theme = NULL,
@@ -127,7 +127,7 @@ guide_colourbar <- function(
127127
if (!is.null(barheight) && !is.unit(barheight)) barheight <- unit(barheight, default.unit)
128128

129129
structure(list(
130-
# title
130+
# title
131131
title = title,
132132
title.position = title.position,
133133
title.theme = title.theme,

R/guide-legend.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
#' }
121121
guide_legend <- function(
122122

123-
# title
123+
# title
124124
title = waiver(),
125125
title.position = NULL,
126126
title.theme = NULL,
@@ -154,7 +154,7 @@ guide_legend <- function(
154154
if (!is.null(keyheight) && !is.unit(keyheight)) keyheight <- unit(keyheight, default.unit)
155155

156156
structure(list(
157-
# title
157+
# title
158158
title = title,
159159
title.position = title.position,
160160
title.theme = title.theme,

cran-comments.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
This submission of ggplot2 fixes \donttest{} examples.
2+
3+
## Test environments
4+
* OS X, R 3.1.3
5+
* OS X, R-devel
6+
* Ubuntu 14.04, R 3.1.3
7+
* win-builder (devel and release)
8+
9+
## R CMD check results
10+
11+
There were no ERRORs or WARNINGs in R 3.1.3. On R-devel with --as-cran, there was also this NOTE:
12+
13+
Found the following (possibly) invalid URLs:
14+
URL: http://fueleconomy.gov
15+
From: man/mpg.Rd
16+
Status: 404
17+
Message: Not Found
18+
19+
This URL is accessible through a web browser, though apparently not via R CMD check.
20+
21+
22+
On R-devel for Windows x64, the tests hung and did not complete. We encountered some similar strange errors in our local testing, until we rebuilt and reinstalled packages from source. After doing that, the R CMD CHECK passed as above without problems.
23+
24+
## Downstream dependencies
25+
We did not run checks on downstream dependencies, because there were no behaviour modifying changes to the code.
26+

0 commit comments

Comments
 (0)