Skip to content

Commit ac3d712

Browse files
committed
prep for release
1 parent 1112582 commit ac3d712

File tree

7 files changed

+51274
-9692
lines changed

7 files changed

+51274
-9692
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Description: A system for 'declaratively' creating graphics,
66
how to map variables to aesthetics, what graphical primitives to use,
77
and it takes care of the details.
88
Authors@R: c(
9-
person("Hadley", "Wickham", , "hadley@rstudio.com", c("aut", "cre"),
9+
person("Hadley", "Wickham", , "hadley@rstudio.com", "aut",
1010
comment = c(ORCID = "0000-0003-4757-117X")),
1111
person("Winston", "Chang", , role = "aut",
1212
comment = c(ORCID = "0000-0002-1576-2126")),
1313
person("Lionel", "Henry", , role = "aut"),
14-
person("Thomas Lin", "Pedersen", role = "aut",
15-
comment = c(ORCID = "0000-0002-5147-4711")),
14+
person("Thomas Lin", "Pedersen", , "thomas.pedersen@rstudio.com",
15+
role = c("aut", "cre"), comment = c(ORCID = "0000-0002-5147-4711")),
1616
person("Kohske", "Takahashi", role = "aut"),
1717
person("Claus", "Wilke", role = "aut",
1818
comment = c(ORCID = "0000-0002-7470-9261")),

NEWS.md

Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,54 @@
11
# ggplot2 (development version)
22

3-
* Fixed a bug in `geom_sf()` that caused problems with legend-type
4-
autodetection (@clauswilke, #3963).
3+
* Added an `outside` option to `annotation_logticks()` that places tick marks
4+
outside of the plot bounds. (#3783, @kbodwin)
55

66
* `annotation_raster()` adds support for native rasters. For large rasters,
77
native rasters render significantly faster than arrays (@kent37, #3388)
88

9-
* Default discrete color scales are now configurable through the `options()` of
10-
`ggplot2.discrete.colour` and `ggplot2.discrete.fill`. When set to a character
11-
vector of colour codes (or list of character vectors) with sufficient length,
12-
these colours are used for the default scale. See `help(scale_colour_discrete)`
13-
for more details and examples (@cpsievert, #3833).
9+
* Facet strips now have dedicated position-dependent theme elements
10+
(`strip.text.x.top`, `strip.text.x.bottom`, `strip.text.y.left`,
11+
`strip.text.y.right`) that inherit from `strip.text.x` and `strip.text.y`,
12+
respectively. As a consequence, some theme stylings now need to be applied to
13+
the position-dependent elements rather than to the parent elements. This
14+
change was already introduced in ggplot2 3.3.0 but not listed in the
15+
changelog. (@thomasp85, #3683)
1416

15-
* Default continuous colour scales (i.e., the `options()` `ggplot2.continuous.colour`
16-
and `ggplot2.continuous.fill`, which inform the `type` argument of
17-
`scale_fill_continuous()` and `scale_colour_continuous()`) now accept a function,
18-
which allows more control over these default `continuous_scale()`s (@cpsievert, #3827).
17+
* Facets now handle layers containing no data (@yutannihilation, #3853).
18+
19+
* A newly added geom `geom_density_2d_filled()` and associated stat
20+
`stat_density_2d_filled()` can draw filled density contours
21+
(@clauswilke, #3846).
1922

2023
* A newly added `geom_function()` is now recommended to use in conjunction
2124
with/instead of `stat_function()`. In addition, `stat_function()` now
2225
works with transformed y axes, e.g. `scale_y_log10()`, and in plots
2326
containing no other data or layers (@clauswilke, #3611, #3905, #3983).
2427

25-
* A bug was fixed in `stat_contour()` when calculating breaks based on
26-
the `bins` argument (@clauswilke, #3879, #4004).
27-
28-
* A newly added geom `geom_density_2d_filled()` and associated stat
29-
`stat_density_2d_filled()` can draw filled density contours
30-
(@clauswilke, #3846).
28+
* Fixed a bug in `geom_sf()` that caused problems with legend-type
29+
autodetection (@clauswilke, #3963).
3130

3231
* Support graphics devices that use the `file` argument instead of `fileneame`
3332
in `ggsave()` (@bwiernik, #3810)
34-
35-
* Added an `outside` option to `annotation_logticks()` that places tick marks
36-
outside of the plot bounds. (#3783, @kbodwin)
3733

38-
* Facet strips now have dedicated position-dependent theme elements (`strip.text.x.top`,
39-
`strip.text.x.bottom`, `strip.text.y.left`, `strip.text.y.right`) that inherit from
40-
`strip.text.x` and `strip.text.y`, respectively. As a consequence, some theme stylings now
41-
need to be applied to the position-dependent elements rather than to the parent elements. This
42-
change was already introduced in ggplot2 3.3.0 but not listed in the changelog. (@thomasp85, #3683)
34+
* Default discrete color scales are now configurable through the `options()` of
35+
`ggplot2.discrete.colour` and `ggplot2.discrete.fill`. When set to a character
36+
vector of colour codes (or list of character vectors) with sufficient length,
37+
these colours are used for the default scale. See `help(scale_colour_discrete)`
38+
for more details and examples (@cpsievert, #3833).
39+
40+
* Default continuous colour scales (i.e., the `options()`
41+
`ggplot2.continuous.colour` and `ggplot2.continuous.fill`, which inform the
42+
`type` argument of `scale_fill_continuous()` and `scale_colour_continuous()`)
43+
now accept a function, which allows more control over these default
44+
`continuous_scale()`s (@cpsievert, #3827).
45+
46+
* A bug was fixed in `stat_contour()` when calculating breaks based on
47+
the `bins` argument (@clauswilke, #3879, #4004).
4348

4449
* Data columns can now contain `Vector` S4 objects, which are widely used in the
4550
Bioconductor project. (@teunbrand, #3837)
4651

47-
* Facets now handle layers containing no data (@yutannihilation, #3853).
48-
4952
# ggplot2 3.3.1
5053

5154
This is a small release with no code change. It removes all malicious links to a

cran-comments.md

Lines changed: 163 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,170 @@
1-
This is a very minor patch release that simply fix the URL that got hijacked.
2-
There will be a bigger release in 2 weeks. Since no code has changed, there is
3-
no user facing or breaking changes in this release.
1+
This is a patch release that fixes regressions introduced in 3.3.0. It has no
2+
user facing changes, but includes some internal changes that affects a few
3+
reverse dependencies (mostly in expectations in their unit tests). All
4+
problematic reverse dependencies were notified well in advance, and most have
5+
sent fixes to CRAN.
46

57
## Test environments
6-
* local R installation, R 4.0.0
7-
* ubuntu 16.04 (on travis-ci), R 4.0.0
8+
* local R installation, R 4.0.1
9+
* ubuntu 16.04 (on travis-ci), R 4.0.1
810
* win-builder (devel)
911

1012
## R CMD check results
1113

1214
0 errors | 0 warnings | 0 note
15+
16+
## revdepcheck results
17+
18+
We checked 2752 reverse dependencies (2744 from CRAN + 8 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.
19+
20+
* We saw 13 new problems
21+
* We failed to check 95 packages
22+
23+
Issues with CRAN packages are summarised below.
24+
25+
### New problems
26+
(This reports the first line of each new failure)
27+
28+
* drugCombo
29+
checking whether package ‘drugCombo’ can be installed ... WARNING
30+
31+
* frontiles
32+
checking whether package ‘frontiles’ can be installed ... WARNING
33+
34+
* GENEAsphere
35+
checking whether package ‘GENEAsphere’ can be installed ... WARNING
36+
37+
* ggdistribute
38+
checking examples ... ERROR
39+
40+
* gMOIP
41+
checking whether package ‘gMOIP’ can be installed ... WARNING
42+
43+
* helda
44+
checking tests ... ERROR
45+
46+
* lemon
47+
checking examples ... ERROR
48+
49+
* metagen
50+
checking examples ... ERROR
51+
52+
* NeatMap
53+
checking whether package ‘NeatMap’ can be installed ... WARNING
54+
55+
* PPQplan
56+
checking whether package ‘PPQplan’ can be installed ... WARNING
57+
58+
* predict3d
59+
checking whether package ‘predict3d’ can be installed ... WARNING
60+
61+
* ratPASTA
62+
checking tests ... ERROR
63+
64+
* vmsbase
65+
checking S3 generic/method consistency ... WARNING
66+
checking replacement functions ... WARNING
67+
checking for missing documentation entries ... WARNING
68+
checking for code/documentation mismatches ... WARNING
69+
checking dependencies in R code ... NOTE
70+
checking foreign function calls ... NOTE
71+
checking R code for possible problems ... NOTE
72+
checking Rd \usage sections ... NOTE
73+
74+
### Failed to check
75+
76+
* AID (NA)
77+
* ALA4R (NA)
78+
* av (NA)
79+
* backShift (NA)
80+
* BGGM (NA)
81+
* bootnet (NA)
82+
* BPEC (NA)
83+
* breathteststan (NA)
84+
* cate (NA)
85+
* CausalImpact (NA)
86+
* CB2 (NA)
87+
* cbar (NA)
88+
* csp (NA)
89+
* decisionSupport (NA)
90+
* dendroTools (NA)
91+
* dfpk (NA)
92+
* diceR (NA)
93+
* dimRed (NA)
94+
* EffectLiteR (NA)
95+
* EGAnet (NA)
96+
* EstimateGroupNetwork (NA)
97+
* EvaluateCore (NA)
98+
* ezCutoffs (NA)
99+
* fingertipscharts (NA)
100+
* ForecastComb (NA)
101+
* fSRM (NA)
102+
* gastempt (NA)
103+
* GeomComb (NA)
104+
* GGEBiplots (NA)
105+
* ggmsa (NA)
106+
* gscaLCA (NA)
107+
* HierDpart (NA)
108+
* hilldiv (NA)
109+
* iarm (NA)
110+
* idiogramFISH (NA)
111+
* JWileymisc (NA)
112+
* likert (NA)
113+
* lsl (NA)
114+
* MAINT.Data (NA)
115+
* MarketMatching (NA)
116+
* mcvis (NA)
117+
* mrbayes (NA)
118+
* multilevelPSA (NA)
119+
* multilevelTools (NA)
120+
* MultisiteMediation (NA)
121+
* mvdalab (NA)
122+
* NetworkChange (NA)
123+
* networktools (NA)
124+
* neuropsychology (NA)
125+
* nLTT (NA)
126+
* NMF (NA)
127+
* OncoBayes2 (NA)
128+
* osmplotr (NA)
129+
* OutlierDetection (NA)
130+
* pcalg (NA)
131+
* PCMBase (NA)
132+
* penaltyLearning (NA)
133+
* PhyInformR (NA)
134+
* phylopath (NA)
135+
* pmc (NA)
136+
* pompom (NA)
137+
* processR (NA)
138+
* profileR (NA)
139+
* prophet (NA)
140+
* pscore (NA)
141+
* psychonetrics (NA)
142+
* qgraph (NA)
143+
* quokar (NA)
144+
* r4lineups (NA)
145+
* radiant.basics (NA)
146+
* radiant.data (NA)
147+
* radiant.model (NA)
148+
* radiant.multivariate (NA)
149+
* RAM (NA)
150+
* RBesT (NA)
151+
* rhierbaps (NA)
152+
* rrd (NA)
153+
* rstanarm (NA)
154+
* sdmvspecies (NA)
155+
* sensiPhy (NA)
156+
* ShinyItemAnalysis (NA)
157+
* ShortForm (NA)
158+
* SimCorrMix (NA)
159+
* SimDesign (NA)
160+
* SimMultiCorrData (NA)
161+
* spectralAnalysis (NA)
162+
* StroupGLMM (NA)
163+
* trackdf (NA)
164+
* trackr (NA)
165+
* treespace (NA)
166+
* TriMatch (NA)
167+
* userfriendlyscience (NA)
168+
* vcfR (NA)
169+
* webr (NA)
170+
* wrswoR (NA)

man/ggplot2-package.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)