diff --git a/CHANGELOG.md b/CHANGELOG.md index a246c747..d228fb54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.10.0] - 2018-04-03 +### Added +- Previously, if a user named their app file `dash.py`, an unhelpful error +message would be raised. Now, `import dash_html_components` will check if +the user has a file named `dash.py` and warn the users appropriately. +https://github.com/plotly/dash-html-components/pull/39 + ## [0.9.0] - 2018-02-11 ### Changed - Moved `PropTypes` import from using `react` to using `prop-types` package to support using React 16+ in `dash-renderer` diff --git a/dash_html_components/version.py b/dash_html_components/version.py index e4e49b3b..9d1bb721 100644 --- a/dash_html_components/version.py +++ b/dash_html_components/version.py @@ -1 +1 @@ -__version__ = '0.9.0' +__version__ = '0.10.0' diff --git a/package.json b/package.json index 65eb7a80..137bc09b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-html-components", - "version": "0.9.0", + "version": "0.10.0", "description": "Vanilla HTML components for Dash", "main": "lib/index.js", "repository": {