Skip to content

Commit ec83844

Browse files
authored
Merge pull request #443 from facultyai/release-0.10.5
Release 0.10.5
2 parents 75f4c0f + bfd65b4 commit ec83844

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
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.10.5-dev"
1+
__version__ = "0.10.5"

docs/content/changelog.md

Lines changed: 6 additions & 0 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.10.5 - 2020/8/20
10+
11+
### Fixed
12+
13+
- Reverted behaviour of `style` prop from `Progress` component. Bar can be styled with new `bar_style` prop ([PR 441](https://github.com/facultyai/dash-bootstrap-components/pull/441))
14+
915
## 0.10.4 - 2020/8/19
1016

1117
### Added

docs/examples/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
INDEX_STRING_TEMPLATE = """{% extends "example.html" %}
2424
{% block head %}
2525
{{ super() }}
26-
{{ "{%metas%}{%css%}{%favicon%}" }}
26+
{{ "{%metas%}{%css%}" }}
2727
{% endblock %}
2828
{% block title %}
2929
<title>{{ "{%title%}" }}</title>
@@ -75,6 +75,7 @@ def build_app_from_example(app, name, code, code_link, show_warning=False):
7575
requests_pathname_prefix=f"/examples/{name}/",
7676
serve_locally=False,
7777
index_string=template.replace("<CODE>", code),
78+
update_title=None,
7879
)
7980
new_app.title = f"{name.capitalize().replace('-', ' ')} - dbc examples"
8081
new_app.layout = app.layout

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dash==1.14.0
2-
dash_bootstrap_components==0.10.4
2+
dash_bootstrap_components==0.10.5
33
gunicorn
44
markdown
55
pandas

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

0 commit comments

Comments
 (0)