diff --git a/dash_bootstrap_components/__init__.py b/dash_bootstrap_components/__init__.py index 77cfa000..9da2cdf9 100644 --- a/dash_bootstrap_components/__init__.py +++ b/dash_bootstrap_components/__init__.py @@ -7,7 +7,7 @@ from ._components import * # noqa from ._table import _generate_table_from_df -__version__ = "0.10.7-dev" +__version__ = "0.10.7" _current_path = os.path.dirname(os.path.abspath(__file__)) METADATA_PATH = os.path.join(_current_path, "_components", "metadata.json") diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 4065ef82..bc215777 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -6,11 +6,17 @@ title: Changelog This page documents notable changes in dash-bootstrap-components releases. +## 0.10.7 - 2020/10/4 + +### Fixed + +- Follow link as external link when `external_link=True` in `DropdownMenuItem` ([PR 458](https://github.com/facultyai/dash-bootstrap-components/pull/458)) + ## 0.10.6 - 2020/9/10 ### Added -- The JavaScript bundle for dash-bootstrap-components can now be fetched from a CDN by setting `serve_locally=False` in `dash.Dash` ([PR 451](https://github.com/facultyai/dash-bootstrap-components/pull/451)) +- The JavaScript bundle for dash-bootstrap-components can now be fetched from a CDN by setting `serve_locally=False` in `dash.Dash` ([PR 451](https://github.com/facultyai/dash-bootstrap-components/pull/451)) ### Fixed diff --git a/package.json b/package.json index f978c71a..cb4de37d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "0.10.7-dev", + "version": "0.10.7", "description": "Bootstrap components for Plotly Dash", "repository": "github:facultyai/dash-bootstrap-components", "main": "lib/dash-bootstrap-components.min.js", diff --git a/tests/test_version.py b/tests/test_version.py index 95d9c724..2b235761 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.10.7-dev" + assert __version__ == "0.10.7"