diff --git a/CHANGELOG.md b/CHANGELOG.md index afea8b32..9226df70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,18 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - A minor bug in `validate_keys` which prevented `interpolate_index` from working as intended has been resolved +## [0.5.0 ] - 2020-05-28 +### Added +- Dash for R now depends on the `brotli` package explicitly; previously it was loaded when importing `reqres`. [#204](https://github.com/plotly/dashR/pull/204) + +### Changed +- Dash for R no longer wraps the layout in an `htmlDiv` internally, for parity with Dash for Python. Starting in v0.5.0, the `layout` method only accepts a single argument, and that argument must be a Dash component or a function that returns a Dash component. [#121](https://github.com/plotly/dashR/pull/121) +- Package documentation has been significantly refactored to use new features of `roxygen2` when documenting R6 classes +- The `title` method now specifies `Dash` as the default application title instead of `dash`. [#200](https://github.com/plotly/dashR/pull/200) + +### Fixed +- A minor bug in `validate_keys` which prevented `interpolate_index` from working as intended has been resolved + ## [0.4.1] - 2020-05-08 ### Fixed - Callbacks with multiple outputs which return one or more components are now permitted; a bug previously prevented their use, fixed in [#198](https://github.com/plotly/dashR/pull/198) diff --git a/DESCRIPTION b/DESCRIPTION index f3d20aea..a8daecd2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: dash Title: An Interface to the Dash Ecosystem for Authoring Reactive Web Applications -Version: 0.5.0 +Version: 0.6.0 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: @@ -8,7 +8,7 @@ Depends: Imports: dashHtmlComponents (== 1.0.3), dashCoreComponents (== 1.10.0), - dashTable (== 4.7.0), + dashTable (== 4.8.0), R6, fiery (> 1.0.0), routr (> 0.2.0), @@ -34,7 +34,7 @@ Collate: 'internal.R' Remotes: plotly/dash-html-components@e63acfa, plotly/dash-core-components@e322758, - plotly/dash-table@f5620fd + plotly/dash-table@4307589 License: MIT + file LICENSE Encoding: UTF-8 LazyData: true