Skip to content

Commit 4ef1709

Browse files
committed
NEWS/DESCRIPTION
1 parent c9f7ff2 commit 4ef1709

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: plotly
22
Type: Package
33
Title: Interactive, publication-quality graphs online.
4-
Version: 0.5.26
4+
Version: 0.5.27
55
Authors@R: c(person("Chris", "Parmer", role = c("aut", "cre"),
66
email = "[email protected]"),
77
person("Scott", "Chamberlain", role = "aut",

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.5.27 -- 19 Mar 2015
2+
3+
Reimplement geom_ribbon as a basic polygon. Fix #191. Fix #192.
4+
15
0.5.26 -- 18 Mar 2015
26

37
Implemented geom_rect #178

tests/testthat/test-ggplot-smooth.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test_that("geom_point() + geom_smooth(se = FALSE) produces 2 traces", {
2828
expect_traces(p2, 2, "se-false")
2929
})
3030

31-
d <- diamonds[sample(nrows(diamonds, 1000)), ]
31+
d <- diamonds[sample(nrow(diamonds), 1000), ]
3232
p3 <- qplot(carat, price, group = cut, data = d) + geom_smooth()
3333

3434
test_that("geom_smooth() respects group aesthetic", {

0 commit comments

Comments
 (0)