Skip to content

Commit de951de

Browse files
committed
Bump version; update NEWS; fix filename test
1 parent 681509f commit de951de

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: plotly
22
Title: Create interactive web-based graphs via plotly's API
3-
Version: 1.0.7
3+
Version: 1.0.8
44
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cph"),
55
email = "[email protected]"),
66
person("Scott", "Chamberlain", role = "aut",

NEWS

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.0.8 -- 14 Sep 2015
2+
3+
Added the plotly_IMAGES() function which interfaces to the images endpoint https://api.plot.ly/v2/#images
4+
5+
Details -> https://github.com/ropensci/plotly/pull/279
6+
17
1.0.7 -- 26 Aug 2015
28

39
See https://github.com/ropensci/plotly/pull/275

tests/testthat/test-plotly-filename.R

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@ context("Filename")
22

33
test_that("filepath with directories is returned as passed", {
44
p <- print(plot_ly(mtcars, x = wt, y = vs, filename = "directory/awesome"))
5-
# why is the directory name replicated in the response?
6-
expect_identical(p$filename, "directorydirectory/awesome")
5+
expect_match(p$filename, "directory/awesome")
76
})

0 commit comments

Comments
 (0)