Skip to content

Commit a4dea98

Browse files
authored
Merge pull request #547 from facultyai/release/0.12.0
Release 0.12.0
2 parents 17528a2 + a7aad2b commit a4dea98

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
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__ = "0.12.0-dev"
1+
__version__ = "0.12.0"

docs/content/changelog.md

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

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

9+
## 0.12.0 - 2021/3/21
10+
11+
### Added
12+
13+
- Adds a new `trigger` property to `Popover`, allowing it to be used without writing callbacks if desired ([PR 531](https://github.com/facultyai/dash-bootstrap-components/pull/531))
14+
- Exposes `download` prop on `Button` ([PR 528](https://github.com/facultyai/dash-bootstrap-components/pull/528))
15+
16+
### Fixed
17+
18+
- Restore default colours in `Alert` and `Badge` components ([PR 542](https://github.com/facultyai/dash-bootstrap-components/pull/542))
19+
20+
### Changed
21+
22+
- Adds `visibility:hidden` to `Fade` when content is faded so that tooltips do not appear on faded content ([PR 535](https://github.com/facultyai/dash-bootstrap-components/pull/535), [PR 537](https://github.com/facultyai/dash-bootstrap-components/pull/537))
23+
924
## 0.11.3 - 2021/2/13
1025

1126
This version marks the first release of dash-bootstrap-components for Julia. There are no changes in functionality.

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": "0.12.0-dev",
3+
"version": "0.12.0",
44
"description": "Bootstrap components for Plotly Dash",
55
"repository": "github:facultyai/dash-bootstrap-components",
66
"main": "lib/dash-bootstrap-components.min.js",

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def release(ctx, version):
6262
run(f"git checkout -b release/{version}")
6363
run(
6464
"git add package.json package-lock.json "
65-
"dash_bootstrap_components/__init__.py "
65+
"dash_bootstrap_components/_version.py "
6666
"tests/test_version.py"
6767
)
6868
run(f'git commit -m "Release {version}"')

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__ == "0.12.0-dev"
5+
assert __version__ == "0.12.0"

0 commit comments

Comments
 (0)