Skip to content

Commit e0ff6db

Browse files
authored
Release 1.4.0 (#943)
* Release 1.4.0 * Update changelog
1 parent bcdd21d commit e0ff6db

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-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.4.0-dev"
1+
__version__ = "1.4.0"

docs/content/changelog.md

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

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

9+
## 1.4.0 - 2023/02/27
10+
11+
Version 1.4.0 of dash-bootstrap-components. This version contains some new features and bug fixes. Please continue to report problems on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues).
12+
13+
### Added
14+
15+
- It is now possible to pass props as labels to `Checklist`, `RadioItems`, `RadioButton`, `Checkbox`, and `Switch` components. ([PR 940](https://github.com/facultyai/dash-bootstrap-components/pull/940))
16+
17+
### Fixed
18+
19+
- Ensure ids in `dbc.Tab` and `dbc.AccordionItem` are stringified before components are rendered ([PR 937](https://github.com/facultyai/dash-bootstrap-components/pull/937))
20+
- Allow `Offcanvas.title` to be an arbitrary dash component ([PR 938](https://github.com/facultyai/dash-bootstrap-components/pull/938/files))
21+
922
## 1.3.1 - 2023/01/29
1023

1124
Version 1.3.1 of dash-bootstrap-components. This version contains bug fixes but no new features. 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.4.0-dev",
3+
"version": "1.4.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.4.0-dev"
5+
assert __version__ == "1.4.0"

0 commit comments

Comments
 (0)