diff --git a/CHANGELOG.md b/CHANGELOG.md index 098f8aca..a9bc3393 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/DESCRIPTION b/DESCRIPTION index a8daecd2..740591c2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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 = "chris@plotly.com"), person("Ryan Patrick", "Kyle", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-5829-9867"), email = "ryan@plotly.com"), person("Carson", "Sievert", role = c("aut"), comment = c(ORCID = "0000-0002-4958-2844")), person("Hammad", "Khan", role = c("aut"), email = "hammadkhan@plotly.com"), 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), @@ -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 diff --git a/README.md b/README.md index 060d155b..c081017a 100644 --- a/README.md +++ b/README.md @@ -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!") ) ) @@ -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) ) ),