Skip to content

Commit ec4378a

Browse files
authored
Release 1.0.2 (#791)
* Release 1.0.2 * Update changelog
1 parent f3292cf commit ec4378a

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-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.2-dev"
1+
__version__ = "1.0.2"

docs/content/changelog.md

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

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

9+
## 1.0.2 - 2021/12/12
10+
11+
This release updates CDN links to use Bootstrap 5.1.3 and fixes a few bugs. Please continue to report bugs on our [issue tracker](https://github.com/facultyai/dash-bootstrap-components/issues)!
12+
13+
### Changed
14+
15+
- Links in the `themes` module now use Bootstrap 5.1.3 ([PR 789](https://github.com/facultyai/dash-bootstrap-components/pull/789))
16+
17+
### Added
18+
19+
- Added `autohide` prop to `Tooltip` and `Popover` when using the `hover` trigger. When set to `True`, the `Popover` / `Tooltip` will hide if the mouse is moved over the content ([PR 788](https://github.com/facultyai/dash-bootstrap-components/pull/788))
20+
21+
### Fixed
22+
23+
- `Popover` with trigger `hover` will not dismiss if mouse is moved over the content ([PR 788](https://github.com/facultyai/dash-bootstrap-components/pull/788))
24+
- Resolved bug where `Tooltip` could get stuck open when moused over quickly ([PR 788](https://github.com/facultyai/dash-bootstrap-components/pull/788))
25+
926
## 1.0.1 - 2021/11/28
1027

1128
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)!

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

0 commit comments

Comments
 (0)