Skip to content

Commit 8af03a9

Browse files
authored
Merge pull request #5380 from tidyverse/v3.4.3-rc
Release 3.4.3
2 parents 2cd0e96 + 62a5f4a commit 8af03a9

File tree

4 files changed

+12
-76
lines changed

4 files changed

+12
-76
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: ggplot2
2-
Version: 3.4.2.9000
2+
Version: 3.4.3.9000
33
Title: Create Elegant Data Visualisations Using the Grammar of Graphics
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = "aut",

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@
116116
duplicated coordinates (@teunbrand, #5215).
117117
* Improve performance of layers without positional scales (@zeehio, #4990)
118118

119+
# ggplot2 3.4.3
120+
This hotfix release addresses a version comparison change in r-devel. There are
121+
no user-facing or breaking changes.
122+
119123
# ggplot2 3.4.2
120124
This is a hotfix release anticipating changes in r-devel, but folds in upkeep
121125
changes and a few bug fixes as well.

R/backports.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Backport fix from R 3.3:
22
# https://github.com/wch/r-source/commit/4efc81c98d262f93de9e7911aaa910f5c63cd00f
3-
if (getRversion() < 3.3) {
3+
if (getRversion() < "3.3") {
44
absolute.units <- getFromNamespace("absolute.units", "grid")
55
absolute.units.unit <- getFromNamespace("absolute.units.unit", "grid")
66
absolute.units.unit.list <- getFromNamespace("absolute.units.unit.list", "grid")
@@ -18,6 +18,6 @@ if (getRversion() < 3.3) {
1818
on_load(backport_unit_methods())
1919

2020
# isFALSE() is available on R (>=3.5)
21-
if (getRversion() < 3.5) {
21+
if (getRversion() < "3.5") {
2222
isFALSE <- function(x) is.logical(x) && length(x) == 1L && !is.na(x) && !x
2323
}

cran-comments.md

Lines changed: 5 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,5 @@
1-
This is a patch release responding to a request from CRAN about new warnings in
2-
R-devel. It also includes a small batch of of bug fixes since last release.
3-
There are no user facing changes.
4-
5-
All breaking reverse dependencies have been notified.
6-
7-
## revdepcheck results
8-
9-
We checked 4503 reverse dependencies (4468 from CRAN + 35 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.
10-
11-
* We saw 8 new problems
12-
* We failed to check 29 packages
13-
14-
Issues with CRAN packages are summarised below.
15-
16-
### New problems
17-
(This reports the first line of each new failure)
18-
19-
* afex
20-
checking re-building of vignette outputs ... WARNING
21-
22-
* dalmatian
23-
checking re-building of vignette outputs ... WARNING
24-
25-
* DriveML
26-
checking re-building of vignette outputs ... WARNING
27-
28-
* EcoEnsemble
29-
checking re-building of vignette outputs ... WARNING
30-
31-
* ggtern
32-
checking Rd files ... WARNING
33-
34-
* siland
35-
checking re-building of vignette outputs ... WARNING
36-
37-
* TCIU
38-
checking re-building of vignette outputs ... WARNING
39-
40-
* xpose
41-
checking tests ... ERROR
42-
43-
### Failed to check
44-
45-
* beadplexr (NA)
46-
* CausalImpact (NA)
47-
* CensMFM (NA)
48-
* cinaR (NA)
49-
* ctsem (NA)
50-
* genekitr (NA)
51-
* ggh4x (NA)
52-
* glmmPen (NA)
53-
* grandR (NA)
54-
* immcp (NA)
55-
* loon.ggplot (NA)
56-
* MACP (NA)
57-
* MarketMatching (NA)
58-
* MARVEL (NA)
59-
* nlmixr2rpt (NA)
60-
* numbat (NA)
61-
* OlinkAnalyze (NA)
62-
* OpenMx (NA)
63-
* Platypus (NA)
64-
* PsychWordVec (NA)
65-
* RcppCensSpatial (NA)
66-
* rstan (NA)
67-
* RVA (NA)
68-
* rxode2 (NA)
69-
* SCpubr (NA)
70-
* tidySEM (NA)
71-
* tinyarray (NA)
72-
* valse (NA)
73-
* vivid (NA)
1+
This is a patch release responding to a request from CRAN about numeric
2+
version comparisons in R-devel. It also includes a workaround for changes
3+
in the `stats::density()` function in R-devel that affected visual tests.
4+
There are no user facing changes, so no reverse dependencies are expected to
5+
be affected.

0 commit comments

Comments
 (0)