Skip to content

Commit 96604d1

Browse files
authored
Merge pull request #503 from facultyai/release/0.11.1
Release 0.11.1
2 parents b08f848 + d4ffd4e commit 96604d1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
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.1-dev"
10+
__version__ = "0.11.1"
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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,14 @@ title: Changelog
66

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

9-
## 0.11.0 - 2020/12/13
109

11-
This is a release candidate for dash-bootstrap-components 0.11.0
10+
## 0.11.1 - 2020/12/20
11+
12+
### Fixed
13+
14+
- Fixes bug that prevented `active` property of `NavLink` from being correctly updated by callbacks ([PR 499](https://github.com/facultyai/dash-bootstrap-components/pull/499))
15+
16+
## 0.11.0 - 2020/12/13
1217

1318
### Added
1419

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

0 commit comments

Comments
 (0)