Skip to content

Commit d6a95cf

Browse files
committed
Bump version, update news, document, add unit test for add_image()
1 parent cead5d9 commit d6a95cf

28 files changed

+285
-103
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: plotly
22
Title: Create Interactive Web Graphics via 'plotly.js'
3-
Version: 4.9.1
3+
Version: 4.9.1.9000
44
Authors@R: c(person("Carson", "Sievert", role = c("aut", "cre"),
55
email = "[email protected]", comment = c(ORCID = "0000-0002-4958-2844")),
66
person("Chris", "Parmer", role = "aut",
@@ -72,6 +72,6 @@ Suggests:
7272
plotlyGeoAssets,
7373
forcats
7474
LazyData: true
75-
RoxygenNote: 6.1.1
75+
RoxygenNote: 7.0.2
7676
Encoding: UTF-8
7777
Roxygen: list(markdown = TRUE)

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export(add_heatmap)
9494
export(add_histogram)
9595
export(add_histogram2d)
9696
export(add_histogram2dcontour)
97+
export(add_image)
9798
export(add_lines)
9899
export(add_markers)
99100
export(add_mesh)

NEWS.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
## Changes to plotly.js
44

5-
* This version of the R package upgrades the version of the underlying plotly.js library from v1.49.4 to v1.52.2. The [plotly.js release page](https://github.com/plotly/plotly.js/releases) has the full list of changes.
5+
* This version of the R package upgrades the version of the underlying plotly.js library from v1.49.4 to v1.52.2. This includes many bug fixes, improvements, as well as 2 new trace types: `treemap` and `image`. The [plotly.js release page](https://github.com/plotly/plotly.js/releases) has the full list of changes.
6+
7+
## IMPROVEMENTS
8+
9+
* The `add_image()` function was added to make it easier to create image traces via `raster` objects.
610

711
## BUG FIXES
812

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License (ISC)
2+
3+
Copyright (c) 2015, Wes Todd
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
12+
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
14+
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
15+
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

man/add_trace.Rd

+66-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/animation.Rd

+8-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/api.Rd

+22-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/config.Rd

+9-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/embed_notebook.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/event_data.Rd

+10-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/gg2list.Rd

+11-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/ggplotly.Rd

+11-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/group2NA.Rd

+7-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)