Skip to content

Commit

Permalink
Dash for R v0.6.1 (#211)
Browse files Browse the repository at this point in the history
* bump dashCoreComponents to 1.10.1
  • Loading branch information
rpkyle authored Jun 18, 2020
1 parent bd4a925 commit e2ed29d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.6.1] - 2020-06-17
### Fixed
- 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)).

## [0.6.0 ] - 2020-06-17
### Changed
- 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.
Expand Down
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package: dash
Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications
Version: 0.6.0
Version: 0.6.1
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"))
Description: A framework for building analytical web applications, Dash offers a pleasant and productive development experience. No JavaScript required.
Depends:
R (>= 3.0.2)
Imports:
dashHtmlComponents (== 1.0.3),
dashCoreComponents (== 1.10.0),
dashCoreComponents (== 1.10.1),
dashTable (== 4.8.0),
R6,
fiery (> 1.0.0),
Expand All @@ -33,7 +33,7 @@ Collate:
'print.R'
'internal.R'
Remotes: plotly/dash-html-components@e63acfa,
plotly/dash-core-components@e322758,
plotly/dash-core-components@5049379,
plotly/dash-table@4307589
License: MIT + file LICENSE
Encoding: UTF-8
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ app$layout(
htmlDiv(id = "outputID"),
dccGraph(id = "giraffe",
figure = list(
data = list(x = c(1,2,3), y = c(3,2,8), type = 'bar'),
data = list(x = c(1,2,3), y = c(3,2,8), type = "bar"),
layout = list(title = "Let's Dance!")
)
)
Expand Down Expand Up @@ -126,13 +126,13 @@ app$callback(output = list(id = "giraffe", property = "figure"),
list(
x = df$x,
y = df$y,
type = 'bar'
type = "bar"
),
list(
x = df$x,
y = df$y2,
type = 'scatter',
mode = 'lines+markers',
type = "scatter",
mode = "lines+markers",
line = list(width = 4)
)
),
Expand Down

0 comments on commit e2ed29d

Please sign in to comment.