Skip to content

Commit 8e2a2a7

Browse files
committed
resolve merge conflict
Merge branch 'main' into yjunechoe-curly-braces-ggproto-methods # Conflicts: # R/coord-.R # R/coord-cartesian-.R # R/coord-transform.R # R/facet-.R # R/geom-.R # R/stat-unique.R
2 parents 0758640 + 5ad8736 commit 8e2a2a7

File tree

277 files changed

+12936
-6553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

277 files changed

+12936
-6553
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,16 @@ jobs:
3535
clean = FALSE,
3636
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
3737
)
38+
print(cov)
3839
covr::to_cobertura(cov)
3940
shell: Rscript {0}
4041

41-
- uses: codecov/codecov-action@v4
42+
- uses: codecov/codecov-action@v5
4243
with:
43-
fail_ci_if_error: ${{ github.event_name != 'pull_request' && true || false }}
44-
file: ./cobertura.xml
45-
plugin: noop
44+
# Fail if error if not on PR, or if on PR and token is given
45+
fail_ci_if_error: ${{ github.event_name != 'pull_request' || secrets.CODECOV_TOKEN }}
46+
files: ./cobertura.xml
47+
plugins: noop
4648
disable_search: true
4749
token: ${{ secrets.CODECOV_TOKEN }}
4850

DESCRIPTION

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ Authors@R: c(
2020
comment = c(ORCID = "0000-0002-9415-4582")),
2121
person("Teun", "van den Brand", role = "aut",
2222
comment = c(ORCID = "0000-0002-9335-7468")),
23-
person("Posit, PBC", role = c("cph", "fnd"))
23+
person("Posit, PBC", role = c("cph", "fnd"),
24+
comment = c(ROR = "03wc8by49"))
2425
)
2526
Description: A system for 'declaratively' creating graphics, based on "The
2627
Grammar of Graphics". You provide the data, tell 'ggplot2' how to map
@@ -30,7 +31,7 @@ License: MIT + file LICENSE
3031
URL: https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2
3132
BugReports: https://github.com/tidyverse/ggplot2/issues
3233
Depends:
33-
R (>= 4.0)
34+
R (>= 4.1)
3435
Imports:
3536
cli,
3637
grDevices,
@@ -63,6 +64,7 @@ Suggests:
6364
ragg (>= 1.2.6),
6465
RColorBrewer,
6566
rmarkdown,
67+
roxygen2,
6668
rpart,
6769
sf (>= 0.7-3),
6870
svglite (>= 2.1.2),
@@ -76,7 +78,7 @@ VignetteBuilder:
7678
knitr
7779
Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate
7880
Config/testthat/edition: 3
79-
Config/usethis/last-upkeep: 2024-10-24
81+
Config/usethis/last-upkeep: 2025-04-23
8082
Encoding: UTF-8
8183
LazyData: true
8284
Roxygen: list(markdown = TRUE)
@@ -93,11 +95,15 @@ Collate:
9395
'compat-plyr.R'
9496
'utilities.R'
9597
'aes.R'
98+
'annotation-borders.R'
9699
'utilities-checks.R'
97100
'legend-draw.R'
98101
'geom-.R'
99102
'annotation-custom.R'
100103
'annotation-logticks.R'
104+
'scale-type.R'
105+
'layer.R'
106+
'make-constructor.R'
101107
'geom-polygon.R'
102108
'geom-map.R'
103109
'annotation-map.R'
@@ -142,6 +148,7 @@ Collate:
142148
'geom-col.R'
143149
'geom-path.R'
144150
'geom-contour.R'
151+
'geom-point.R'
145152
'geom-count.R'
146153
'geom-crossbar.R'
147154
'geom-segment.R'
@@ -160,7 +167,6 @@ Collate:
160167
'geom-jitter.R'
161168
'geom-label.R'
162169
'geom-linerange.R'
163-
'geom-point.R'
164170
'geom-pointrange.R'
165171
'geom-quantile.R'
166172
'geom-rug.R'
@@ -186,7 +192,6 @@ Collate:
186192
'guide-colorbar.R'
187193
'guide-colorsteps.R'
188194
'guide-custom.R'
189-
'layer.R'
190195
'guide-none.R'
191196
'guide-old.R'
192197
'guides-.R'
@@ -236,7 +241,6 @@ Collate:
236241
'scale-shape.R'
237242
'scale-size.R'
238243
'scale-steps.R'
239-
'scale-type.R'
240244
'scale-view.R'
241245
'scale-viridis.R'
242246
'scales-.R'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
YEAR: 2024
1+
YEAR: 2025
22
COPYRIGHT HOLDER: ggplot2 core developer team

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
Copyright (c) 2024 ggplot2 core developer team
3+
Copyright (c) 2025 ggplot2 core developer team
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NAMESPACE

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ S3method(element_grob,element_rect)
2828
S3method(element_grob,element_text)
2929
S3method(format,ggproto)
3030
S3method(format,ggproto_method)
31+
S3method(format,rd_section_aesthetics)
3132
S3method(fortify,"NULL")
3233
S3method(fortify,"function")
3334
S3method(fortify,Line)
@@ -95,6 +96,8 @@ S3method(limits,character)
9596
S3method(limits,factor)
9697
S3method(limits,numeric)
9798
S3method(makeContext,dotstackGrob)
99+
S3method(make_constructor,Geom)
100+
S3method(make_constructor,Stat)
98101
S3method(merge_element,default)
99102
S3method(merge_element,element)
100103
S3method(merge_element,element_blank)
@@ -168,6 +171,7 @@ export(CoordQuickmap)
168171
export(CoordRadial)
169172
export(CoordSf)
170173
export(CoordTrans)
174+
export(CoordTransform)
171175
export(Facet)
172176
export(FacetGrid)
173177
export(FacetNull)
@@ -294,6 +298,7 @@ export(after_scale)
294298
export(after_stat)
295299
export(alpha)
296300
export(annotate)
301+
export(annotation_borders)
297302
export(annotation_custom)
298303
export(annotation_logticks)
299304
export(annotation_map)
@@ -322,6 +327,7 @@ export(coord_quickmap)
322327
export(coord_radial)
323328
export(coord_sf)
324329
export(coord_trans)
330+
export(coord_transform)
325331
export(cut_interval)
326332
export(cut_number)
327333
export(cut_width)
@@ -474,7 +480,6 @@ export(is.facet)
474480
export(is.ggplot)
475481
export(is.ggproto)
476482
export(is.theme)
477-
export(is.waiver)
478483
export(is_coord)
479484
export(is_facet)
480485
export(is_geom)
@@ -490,6 +495,7 @@ export(is_scale)
490495
export(is_stat)
491496
export(is_theme)
492497
export(is_theme_element)
498+
export(is_waiver)
493499
export(label_both)
494500
export(label_bquote)
495501
export(label_context)
@@ -505,6 +511,7 @@ export(layer_grob)
505511
export(layer_scales)
506512
export(layer_sf)
507513
export(lims)
514+
export(make_constructor)
508515
export(map_data)
509516
export(margin)
510517
export(margin_auto)

0 commit comments

Comments
 (0)