Skip to content

Commit

Permalink
v4.10.4 release candidate (#2328)
Browse files Browse the repository at this point in the history
* Start v4.10.4 release candidate

* Bugfix for guide logic added to accomodate new ggplot2 guide logic

Issue was silently introduced by #2315, but didn't become an issue until tidyverse/ggplot2@851233f

* Update snapshots
  • Loading branch information
cpsievert committed Jan 14, 2024
1 parent d76e87e commit 0445ed9
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: plotly
Title: Create Interactive Web Graphics via 'plotly.js'
Version: 4.10.3.9000
Version: 4.10.4
Authors@R: c(person("Carson", "Sievert", role = c("aut", "cre"),
email = "cpsievert1@gmail.com", comment = c(ORCID = "0000-0002-4958-2844")),
person("Chris", "Parmer", role = "aut",
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# plotly (development version)
# 4.10.4

## Improvements

Expand Down
2 changes: 1 addition & 1 deletion R/ggplotly.R
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ gg2list <- function(p, width = NULL, height = NULL,
theme$legend.box.just <- theme$legend.box.just %||% c("center", "center")
# scales -> data for guides
gdefs <- if (inherits(plot$guides, "ggproto")) {
get_gdefs_ggproto(npscales$scales, theme, plot, layers, data)
get_gdefs_ggproto(npscales$scales, theme, plot, layers, layer_data)
} else {
get_gdefs(scales, theme, plot, layers)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,9 +430,9 @@
},
{
"name": "crosstalk",
"version": "1.2.0",
"version": "1.2.1",
"src": {
"href": "crosstalk-1.2.0"
"href": "crosstalk-1.2.1"
},
"meta": null,
"script": "js/crosstalk.min.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@
},
{
"name": "crosstalk",
"version": "1.2.0",
"version": "1.2.1",
"src": {
"href": "crosstalk-1.2.0"
"href": "crosstalk-1.2.1"
},
"meta": null,
"script": "js/crosstalk.min.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,9 @@
},
{
"name": "crosstalk",
"version": "1.2.0",
"version": "1.2.1",
"src": {
"href": "crosstalk-1.2.0"
"href": "crosstalk-1.2.1"
},
"meta": null,
"script": "js/crosstalk.min.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@
},
{
"name": "crosstalk",
"version": "1.2.0",
"version": "1.2.1",
"src": {
"href": "crosstalk-1.2.0"
"href": "crosstalk-1.2.1"
},
"meta": null,
"script": "js/crosstalk.min.js",
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/_snaps/ggplot-labels/factor-labels.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0445ed9

Please sign in to comment.