Skip to content

Commit

Permalink
Merge pull request #462 from facultyai/release/0.10.7
Browse files Browse the repository at this point in the history
Bump version to 0.10.7
  • Loading branch information
tcbegley authored Oct 4, 2020
2 parents ce7c394 + debba42 commit a99c0e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dash_bootstrap_components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
8 changes: 7 additions & 1 deletion docs/content/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.10.7-dev"
assert __version__ == "0.10.7"

0 comments on commit a99c0e0

Please sign in to comment.