Skip to content

Commit c9e6304

Browse files
authored
Merge pull request #4818 from tidyverse/v3.3.6-rc
Release 3.3.6
2 parents 3dbbce4 + d7ec42c commit c9e6304

File tree

8 files changed

+272
-2680
lines changed

8 files changed

+272
-2680
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ visual_test
2727
^cran-comments\.md$
2828
^LICENSE\.md$
2929
^vignettes/articles$
30+
^CRAN-SUBMISSION$

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: ggplot2
2+
Version: 3.3.6.9000
23
Title: Create Elegant Data Visualisations Using the Grammar of Graphics
3-
Version: 3.3.5.9000
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = "aut",
66
comment = c(ORCID = "0000-0003-4757-117X")),

NEWS.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,12 @@ precedence between `bins` and `binwidth`. (@eliocamp, #4651)
8989
`geom_linerange()` are now orientation-aware (@mjskay, #4732)
9090

9191
* Updated documentation for `geom_smooth()` to more clearly describe effects of the
92-
`fullrange` parameter (@thoolihan, #4399).
92+
`fullrange` parameter (@thoolihan, #4399).
93+
94+
# ggplot2 3.3.6
95+
This is a very small release only applying an internal change to comply with
96+
R 4.2 and its deprecation of `default.stringsAsFactors()`. There are no user
97+
facing changes and no breaking changes.
9398

9499
# ggplot2 3.3.5
95100
This is a very small release focusing on fixing a couple of untenable issues

cran-comments.md

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
1-
This is a very quick patch release addressing some unforeseen issues with the
2-
latest release. It does not contain any breaking changes and no changes to worse
3-
in the reverse dependencies was detected.
1+
This is a small release as requested by CRAN to remove a call to the deprecated
2+
`default.stringsAsFactors()` in base. This patch contains no user facing changes
3+
and no breaking changes.
44

55
## R CMD check results
66

77
0 errors | 0 warnings | 0 note
8+
9+
## revdepcheck results
10+
11+
We checked 3967 reverse dependencies, comparing R CMD check results across CRAN
12+
and dev versions of this package.
13+
14+
* We saw 2 new problems
15+
* We failed to check 6 packages
16+
17+
Issues with CRAN packages are summarised below. Looking into the 2 problems,
18+
none of them are related to ggplot2.
19+
20+
### New problems
21+
(This reports the first line of each new failure)
22+
23+
* eurlex
24+
checking re-building of vignette outputs ... WARNING
25+
26+
* gggrid
27+
checking re-building of vignette outputs ... WARNING
28+
29+
### Failed to check
30+
31+
* CausalImpact (NA)
32+
* ctsem (NA)
33+
* loon.ggplot (NA)
34+
* SSVS (NA)
35+
* valse (NA)
36+
* vivid (NA)

revdep/README.md

Lines changed: 14 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,20 @@
11
# Revdeps
22

3-
## Failed to check (45)
3+
## Failed to check (6)
44

5-
|package |version |error |warning |note |
6-
|:----------------|:-------|:-----|:-------|:----|
7-
|ActivePathways |? | | | |
8-
|apc |? | | | |
9-
|apisensr |? | | | |
10-
|backShift |? | | | |
11-
|bayesdfa |1.1.0 |1 | | |
12-
|bayesZIB |0.0.2 |1 | | |
13-
|NA |? | | | |
14-
|NA |? | | | |
15-
|btergm |1.9.13 |1 | | |
16-
|CausalImpact |? | | | |
17-
|CB2 |? | | | |
18-
|cbar |? | | | |
19-
|NA |? | | | |
20-
|dfpk |3.5.1 |1 | | |
21-
|diceR |? | | | |
22-
|GenHMM1d |? | | | |
23-
|ggmsa |? | | | |
24-
|ggtern |3.3.0 |1 | |1 |
25-
|glmmfields |0.1.4 |1 | | |
26-
|NA |? | | | |
27-
|mcmcabn |? | | | |
28-
|NA |? | | | |
29-
|metagam |? | | | |
30-
|MoMPCA |? | | | |
31-
|osmplotr |? | | | |
32-
|pcalg |? | | | |
33-
|penaltyLearning |? | | | |
34-
|phylopath |? | | | |
35-
|NA |? | | | |
36-
|rabhit |? | | | |
37-
|raw |? | | | |
38-
|rstap |1.0.3 |1 | | |
39-
|scoper |? | | | |
40-
|spectralAnalysis |? | | | |
41-
|NA |? | | | |
42-
|StroupGLMM |? | | | |
43-
|superb |? | | | |
44-
|SynthETIC |? | | | |
45-
|NA |? | | | |
46-
|tigger |? | | | |
47-
|trackr |? | | | |
48-
|valse |0.1-0 |1 | | |
49-
|vivid |? | | | |
50-
|wrswoR |? | | | |
51-
|zenplots |? | | | |
5+
|package |version |error |warning |note |
6+
|:------------|:-------|:-----|:-------|:----|
7+
|CausalImpact |? | | | |
8+
|ctsem |3.6.0 |1 | | |
9+
|loon.ggplot |? | | | |
10+
|SSVS |? | | | |
11+
|valse |0.1-0 |1 | | |
12+
|vivid |? | | | |
5213

53-
## New problems (1)
14+
## New problems (2)
5415

55-
|package |version |error |warning |note |
56-
|:----------------------------------------|:---------|:-----|:-------|:------|
57-
|[rvinecopulib](problems.md#rvinecopulib) |0.5.5.1.1 |-1 | |__+1__ |
16+
|package |version |error |warning |note |
17+
|:----------------------------|:-------|:-----|:-------|:----|
18+
|[eurlex](problems.md#eurlex) |0.4.1 | |__+1__ | |
19+
|[gggrid](problems.md#gggrid) |0.2-0 | |__+1__ | |
5820

revdep/cran.md

Lines changed: 14 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,26 @@
11
## revdepcheck results
22

3-
We checked 3197 reverse dependencies (3189 from CRAN + 8 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
3+
We checked 3967 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
44

5-
* We saw 1 new problems
6-
* We failed to check 37 packages
5+
* We saw 2 new problems
6+
* We failed to check 6 packages
77

88
Issues with CRAN packages are summarised below.
99

1010
### New problems
1111
(This reports the first line of each new failure)
1212

13-
* rvinecopulib
14-
checking installed package size ... NOTE
13+
* eurlex
14+
checking re-building of vignette outputs ... WARNING
15+
16+
* gggrid
17+
checking re-building of vignette outputs ... WARNING
1518

1619
### Failed to check
1720

18-
* ActivePathways (NA)
19-
* apc (NA)
20-
* apisensr (NA)
21-
* backShift (NA)
22-
* bayesdfa (NA)
23-
* bayesZIB (NA)
24-
* btergm (NA)
25-
* CausalImpact (NA)
26-
* CB2 (NA)
27-
* cbar (NA)
28-
* dfpk (NA)
29-
* diceR (NA)
30-
* GenHMM1d (NA)
31-
* ggmsa (NA)
32-
* ggtern (NA)
33-
* glmmfields (NA)
34-
* mcmcabn (NA)
35-
* metagam (NA)
36-
* MoMPCA (NA)
37-
* osmplotr (NA)
38-
* pcalg (NA)
39-
* penaltyLearning (NA)
40-
* phylopath (NA)
41-
* rabhit (NA)
42-
* raw (NA)
43-
* rstap (NA)
44-
* scoper (NA)
45-
* spectralAnalysis (NA)
46-
* StroupGLMM (NA)
47-
* superb (NA)
48-
* SynthETIC (NA)
49-
* tigger (NA)
50-
* trackr (NA)
51-
* valse (NA)
52-
* vivid (NA)
53-
* wrswoR (NA)
54-
* zenplots (NA)
21+
* CausalImpact (NA)
22+
* ctsem (NA)
23+
* loon.ggplot (NA)
24+
* SSVS (NA)
25+
* valse (NA)
26+
* vivid (NA)

0 commit comments

Comments
 (0)