Skip to content

Commit d7b70c9

Browse files
authored
Merge pull request #437 from facultyai/release-0.10.4
Bump version to 0.10.4
2 parents bd9daf2 + 57831bc commit d7b70c9

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.10.4-dev"
1+
__version__ = "0.10.4"

docs/content/changelog.md

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

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

9+
## 0.10.4 - 2020/8/19
10+
11+
### Added
12+
13+
- `Select` now has a `placeholder` prop ([PR 431](https://github.com/facultyai/dash-bootstrap-components/pull/431))
14+
- `Checkbox` and `RadioButton` now have a `disabled` prop ([PR 432](https://github.com/facultyai/dash-bootstrap-components/pull/432))
15+
916
## 0.10.3 - 2020/6/26
1017

1118
### Fixed

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.3
2+
dash_bootstrap_components==0.10.4
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.4-dev",
3+
"version": "0.10.4",
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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,8 @@ def release(ctx, version):
7777
info("Committing version changes")
7878
run(f"git checkout -b release-{version}")
7979
run(
80-
"git add package.json package-lock.json "
81-
"docs/requirements.txt "
82-
"dash_bootstrap_components/_version.py"
80+
"git add package.json package-lock.json tests/test_version.py"
81+
"docs/requirements.txt dash_bootstrap_components/_version.py"
8382
)
8483
run(f'git commit -m "Bump version to {version}"')
8584
info(f"Tagging version {version} and pushing to GitHub")

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.4-dev"
5+
assert __version__ == "0.10.4"

0 commit comments

Comments
 (0)