Skip to content

Commit

Permalink
Merge pull request #629 from facultyai/release/0.13.0
Browse files Browse the repository at this point in the history
Release 0.13.0
  • Loading branch information
tcbegley authored Jul 31, 2021
2 parents 913c678 + bbcbf0c commit 22ab29c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dash_bootstrap_components/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.13.0-dev"
__version__ = "0.13.0"
16 changes: 16 additions & 0 deletions docs/content/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.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",
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.13.0-dev"
assert __version__ == "0.13.0"

0 comments on commit 22ab29c

Please sign in to comment.