Skip to content

Commit e2ed29d

Browse files
authored
Dash for R v0.6.1 (#211)
* bump dashCoreComponents to 1.10.1
1 parent bd4a925 commit e2ed29d

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.6.1] - 2020-06-17
6+
### Fixed
7+
- Dash for R now depends on v1.10.1 of `dashCoreComponents`, which provides v1.54 of Plotly.js (for more details, see [CHANGELOG.md](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md)).
8+
59
## [0.6.0 ] - 2020-06-17
610
### Changed
711
- Dash for R now depends on v4.8.0 of `dashTable`, which incorporates changes and bug fixes summarized in https://github.com/plotly/dash-table/pull/787, https://github.com/plotly/dash-table/pull/785, and https://github.com/plotly/dash-table/pull/793.

DESCRIPTION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Package: dash
22
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications
3-
Version: 0.6.0
3+
Version: 0.6.1
44
Authors@R: c(person("Chris", "Parmer", role = c("aut"), email = "[email protected]"), person("Ryan Patrick", "Kyle", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5829-9867"), email = "[email protected]"), person("Carson", "Sievert", role = c("aut"), comment = c(ORCID = "0000-0002-4958-2844")), person("Hammad", "Khan", role = c("aut"), email = "[email protected]"), person(family = "Plotly Technologies", role = "cph"))
55
Description: A framework for building analytical web applications, Dash offers a pleasant and productive development experience. No JavaScript required.
66
Depends:
77
R (>= 3.0.2)
88
Imports:
99
dashHtmlComponents (== 1.0.3),
10-
dashCoreComponents (== 1.10.0),
10+
dashCoreComponents (== 1.10.1),
1111
dashTable (== 4.8.0),
1212
R6,
1313
fiery (> 1.0.0),
@@ -33,7 +33,7 @@ Collate:
3333
'print.R'
3434
'internal.R'
3535
Remotes: plotly/dash-html-components@e63acfa,
36-
plotly/dash-core-components@e322758,
36+
plotly/dash-core-components@5049379,
3737
plotly/dash-table@4307589
3838
License: MIT + file LICENSE
3939
Encoding: UTF-8

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ app$layout(
9696
htmlDiv(id = "outputID"),
9797
dccGraph(id = "giraffe",
9898
figure = list(
99-
data = list(x = c(1,2,3), y = c(3,2,8), type = 'bar'),
99+
data = list(x = c(1,2,3), y = c(3,2,8), type = "bar"),
100100
layout = list(title = "Let's Dance!")
101101
)
102102
)
@@ -126,13 +126,13 @@ app$callback(output = list(id = "giraffe", property = "figure"),
126126
list(
127127
x = df$x,
128128
y = df$y,
129-
type = 'bar'
129+
type = "bar"
130130
),
131131
list(
132132
x = df$x,
133133
y = df$y2,
134-
type = 'scatter',
135-
mode = 'lines+markers',
134+
type = "scatter",
135+
mode = "lines+markers",
136136
line = list(width = 4)
137137
)
138138
),

0 commit comments

Comments
 (0)