From 10f69df90ae2d1177b79e261a015f85933427198 Mon Sep 17 00:00:00 2001 From: tcbegley Date: Sat, 31 Jul 2021 12:32:43 +0100 Subject: [PATCH 1/2] Release 0.13.0 --- dash_bootstrap_components/_version.py | 2 +- package.json | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dash_bootstrap_components/_version.py b/dash_bootstrap_components/_version.py index c14087ff..f23a6b39 100644 --- a/dash_bootstrap_components/_version.py +++ b/dash_bootstrap_components/_version.py @@ -1 +1 @@ -__version__ = "0.13.0-dev" +__version__ = "0.13.0" diff --git a/package.json b/package.json index 4312c8b2..cbbfc643 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "0.13.0-dev", + "version": "0.13.0", "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 91c4a5ac..8407f4d5 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.13.0-dev" + assert __version__ == "0.13.0" From bbcbf0cd3a5cbbce021414816b7e63a2c3c44bb3 Mon Sep 17 00:00:00 2001 From: tcbegley Date: Sat, 31 Jul 2021 12:34:49 +0100 Subject: [PATCH 2/2] Update changelog --- docs/content/changelog.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 09508f25..5e211c18 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -6,6 +6,22 @@ title: Changelog This page documents notable changes in dash-bootstrap-components releases. +## 0.13.0 - 2021/7/31 + +### Added + +- Adds a new `Carousel` component to display images in an animated slideshow. Thanks @AnnMarieW for the contribution! ([PR 587](https://github.com/facultyai/dash-bootstrap-components/pull/587)) +- Exposes `title` prop on `Button` and `Badge` ([PR 617](https://github.com/facultyai/dash-bootstrap-components/pull/617)) +- Added `links_left` prop to `NavbarSimple` to allow links to be left-aligned ([PR 618](https://github.com/facultyai/dash-bootstrap-components/pull/618)) + +### Fixed + +- Fixed bug in `Spinner` component that meant `spinner_style` prop was not correctly applied to the spinner. ([PR 578](https://github.com/facultyai/dash-bootstrap-components/pull/578)) + +### Changed + +- Updated behaviour of `Input` with `type="number"` to match behaviour in dash-core-components. If an invalid input is entered (i.e. one outside the range of `min` / `max` or with an invalid `step`) the component passes the value `None` to callbacks for the first invalid input, then doesn't fire again until a valid input is entered. [PR 626](https://github.com/facultyai/dash-bootstrap-components/pull/626)) + ## 0.12.2 - 2021/5/4 ### Fixed