Skip to content

Commit d6eb50d

Browse files
authored
Merge pull request #514 from facultyai/release/0.11.2
Release 0.11.2
2 parents d7734d6 + 6f005c2 commit d6eb50d

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

dash_bootstrap_components/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from ._components import * # noqa
88
from ._table import _generate_table_from_df
99

10-
__version__ = "0.11.2-dev"
10+
__version__ = "0.11.2"
1111
_current_path = os.path.dirname(os.path.abspath(__file__))
1212

1313
METADATA_PATH = os.path.join(_current_path, "_components", "metadata.json")

docs/content/changelog.md

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

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

9+
## 0.11.2 - 2021/2/5
10+
11+
### Added
12+
13+
- `color` prop for multiple components now accepts CSS colors, hex strings etc. ([PR 506](https://github.com/facultyai/dash-bootstrap-components/pull/506))
14+
- `Table.from_dataframe` now supports multiple column header levels ([PR 509](https://github.com/facultyai/dash-bootstrap-components/pull/509))
915

1016
## 0.11.1 - 2020/12/20
1117

@@ -17,19 +23,19 @@ This page documents notable changes in dash-bootstrap-components releases.
1723

1824
### Added
1925

20-
- The `NavLink` component can now automatically set the `active` prop based on the current pathname. Set `active="exact"` to toggle set `active=True` if the `href` exactly matches the current pathname, or `active="partial"` to set `active=True` if the current pathname starts with `href` ([PR 482](https://github.com/facultyai/dash-bootstrap-components/pull/482))
21-
- `active_tab_style` and `activeTabClassName` props to `Tab` for styling active tabs ([PR 491](https://github.com/facultyai/dash-bootstrap-components/pull/491))
22-
- Exposed `name` prop on input components so that they can be used more effectively in form submissions, and `action` and `method` props of `Form` so that `Form` can be used to post form submissions to a route on the backend ([PR 474](https://github.com/facultyai/dash-bootstrap-components/pull/474))
23-
- Exposes `type` prop on `Button` ([PR 470](https://github.com/facultyai/dash-bootstrap-components/pull/470))
26+
- The `NavLink` component can now automatically set the `active` prop based on the current pathname. Set `active="exact"` to toggle set `active=True` if the `href` exactly matches the current pathname, or `active="partial"` to set `active=True` if the current pathname starts with `href` ([PR 482](https://github.com/facultyai/dash-bootstrap-components/pull/482))
27+
- `active_tab_style` and `activeTabClassName` props to `Tab` for styling active tabs ([PR 491](https://github.com/facultyai/dash-bootstrap-components/pull/491))
28+
- Exposed `name` prop on input components so that they can be used more effectively in form submissions, and `action` and `method` props of `Form` so that `Form` can be used to post form submissions to a route on the backend ([PR 474](https://github.com/facultyai/dash-bootstrap-components/pull/474))
29+
- Exposes `type` prop on `Button` ([PR 470](https://github.com/facultyai/dash-bootstrap-components/pull/470))
2430

2531
### Fixed
2632

2733
- Cursor becomes pointer when hovering on tabs ([PR 480](https://github.com/facultyai/dash-bootstrap-components/pull/480))
28-
- Current position on page is preserved when using `Spinner` as a loading component ([PR 465](https://github.com/facultyai/dash-bootstrap-components/pull/465))
34+
- Current position on page is preserved when using `Spinner` as a loading component ([PR 465](https://github.com/facultyai/dash-bootstrap-components/pull/465))
2935

3036
### Changed
3137

32-
- Updated BootstrapCDN links to use Bootstrap v4.5.2 ([PR 481](https://github.com/facultyai/dash-bootstrap-components/pull/481))
38+
- Updated BootstrapCDN links to use Bootstrap v4.5.2 ([PR 481](https://github.com/facultyai/dash-bootstrap-components/pull/481))
3339

3440
## 0.10.7 - 2020/10/4
3541

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.11.2-dev",
3+
"version": "0.11.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__ == "0.11.2-dev"
5+
assert __version__ == "0.11.2"

0 commit comments

Comments
 (0)