Skip to content

Commit 74a0ec5

Browse files
authored
Release 1.0.1 (#784)
* Release 1.0.1 * Update changelog
1 parent 3f182bc commit 74a0ec5

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-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.0.1-dev"
1+
__version__ = "1.0.1"

docs/content/changelog.md

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

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

9+
## 1.0.1 - 2021/11/28
10+
11+
This release adds no new features but fixes a number of bugs. Please continue to report bugs on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues)!
12+
13+
### Fixed
14+
15+
- Open `AccordionItem`s will close when clicked on ([PR 744](https://github.com/facultyai/dash-bootstrap-components/pull/744))
16+
- Fixed regressions in `DropdownMenu` dismissal. The menu will dismiss if the user clicks outside the menu or if the escape key is pressed. ([PR 751](https://github.com/facultyai/dash-bootstrap-components/pull/751))
17+
- Fixed bug in `Select` that prevented `valid` and `invalid` props from having an effect ([PR 755](https://github.com/facultyai/dash-bootstrap-components/pull/755))
18+
- Set `id` property on tabs so that they can be targeted with tooltips. ([PR 756](https://github.com/facultyai/dash-bootstrap-components/pull/756))
19+
- A number of fixes to `Popover`: ensure the correct behaviour of the `legacy` trigger, and fix bug that prevented `offset` and `hide_arrow` props from having an effect. ([PR 757](https://github.com/facultyai/dash-bootstrap-components/pull/757))
20+
- Make `Button` compatible with `dash_core_components.ConfirmDialogProvider` ([PR 773](https://github.com/facultyai/dash-bootstrap-components/pull/773))
21+
- Fixed bug in `Button` that prevented `target` prop from having an effect ([PR 781](https://github.com/facultyai/dash-bootstrap-components/pull/781))
22+
923
## 1.0.0 - 2021/10/19
1024

1125
v1 of _dash-bootstrap-components_! This release contains loads of new features, but also breaking changes. Please read the changelog carefully, and refer to the [migration guide](/migration-guide/) for full details of the changes.

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.0.1-dev",
3+
"version": "1.0.1",
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.0.1-dev"
5+
assert __version__ == "1.0.1"

0 commit comments

Comments
 (0)