From 3380e6c6c3de0d5719bf2d3b7f22ea09db481e2a Mon Sep 17 00:00:00 2001 From: tcbegley Date: Sun, 4 Oct 2020 19:48:27 +0100 Subject: [PATCH 1/2] Bump version to 0.10.7 --- dash_bootstrap_components/__init__.py | 2 +- package.json | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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/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" From debba42a64f2ffc1cf03023c4cd179feb4bae8b5 Mon Sep 17 00:00:00 2001 From: tcbegley Date: Sun, 4 Oct 2020 19:49:56 +0100 Subject: [PATCH 2/2] Update changelog --- docs/content/changelog.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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