Skip to content

Commit cc3e57e

Browse files
authored
Release 1.6.0 (#1016)
* Release 1.6.0 * Update changelog
1 parent 1556f51 commit cc3e57e

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

dash_bootstrap_components/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.6.0-dev"
1+
__version__ = "1.6.0"

docs/content/changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ title: Changelog
66

77
This page documents notable changes in dash-bootstrap-components releases.
88

9+
## 1.6.0 - 2024/04/14
10+
11+
Version 1.6.0 of dash-bootstrap-components. This version makes some improvements to `Accordion`, `Modal` and `Progress` as well as updating CDN links. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues).
12+
13+
### Added
14+
- The `title` property of `AccordionItem` can now be an arbitrary Dash component ([PR 988](https://github.com/facultyai/dash-bootstrap-components/pull/988))
15+
- You can now set `enforceFocus=False` on a `Modal` to allow components in the background to receive focus while the `Modal` is open ([PR 1001](https://github.com/facultyai/dash-bootstrap-components/pull/1001))
16+
- The documentation now has a dark mode ([PR 984](https://github.com/facultyai/dash-bootstrap-components/pull/984))
17+
18+
### Fixed
19+
- The `min` and `max` properties of a `Progress` bar are propagated to its children ([PR 986](https://github.com/facultyai/dash-bootstrap-components/pull/986))
20+
- Fixed console errors originating from `Tooltip` component ([PR 1008](https://github.com/facultyai/dash-bootstrap-components/pull/1008))
21+
- Fix error caused by `Tooltip` closing as component unmounts ([PR 1008](https://github.com/facultyai/dash-bootstrap-components/pull/1008))
22+
23+
### Changed
24+
- Drop support for Python 3.7 as it is EOL ([PR 995](https://github.com/facultyai/dash-bootstrap-components/pull/995))
25+
- The `themes` module now links to Bootstrap 5.3.3 ([PR 1013](https://github.com/facultyai/dash-bootstrap-components/pull/1013))
26+
927
## 1.5.0 - 2023/09/07
1028

1129
Version 1.5.0 of dash-bootstrap-components. This version makes some improvements to `Carousel` and `Textarea` as well as updating CDN links. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-bootstrap-components",
3-
"version": "1.6.0-dev",
3+
"version": "1.6.0",
44
"description": "Bootstrap components for Plotly Dash",
55
"repository": "github:facultyai/dash-bootstrap-components",
66
"main": "lib/dash-bootstrap-components.min.js",

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "1.6.0-dev"
5+
assert __version__ == "1.6.0"

0 commit comments

Comments
 (0)