From 28fb8dcc634e9e5ee88b5fb2eb500806e09366be Mon Sep 17 00:00:00 2001 From: tcbegley Date: Thu, 10 Sep 2020 07:51:19 +0100 Subject: [PATCH] Bump version to 0.10.6 --- 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 cfd743a4..1763d9ef 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.6-dev" +__version__ = "0.10.6" _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 2ee7596a..766a779f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "0.10.6-dev", + "version": "0.10.6", "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 b98b0d1b..96164989 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.10.6-dev" + assert __version__ == "0.10.6"