Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dash_bootstrap_components/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.4-dev"
__version__ = "0.10.4"
7 changes: 7 additions & 0 deletions docs/content/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ title: Changelog

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

## 0.10.4 - 2020/8/19

### Added

- `Select` now has a `placeholder` prop ([PR 431](https://github.com/facultyai/dash-bootstrap-components/pull/431))
- `Checkbox` and `RadioButton` now have a `disabled` prop ([PR 432](https://github.com/facultyai/dash-bootstrap-components/pull/432))

## 0.10.3 - 2020/6/26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dash==1.14.0
dash_bootstrap_components==0.10.3
dash_bootstrap_components==0.10.4
gunicorn
markdown
pandas
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-bootstrap-components",
"version": "0.10.4-dev",
"version": "0.10.4",
"description": "Bootstrap components for Plotly Dash",
"repository": "github:facultyai/dash-bootstrap-components",
"main": "lib/dash-bootstrap-components.min.js",
Expand Down
5 changes: 2 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,8 @@ def release(ctx, version):
info("Committing version changes")
run(f"git checkout -b release-{version}")
run(
"git add package.json package-lock.json "
"docs/requirements.txt "
"dash_bootstrap_components/_version.py"
"git add package.json package-lock.json tests/test_version.py"
"docs/requirements.txt dash_bootstrap_components/_version.py"
)
run(f'git commit -m "Bump version to {version}"')
info(f"Tagging version {version} and pushing to GitHub")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.10.4-dev"
assert __version__ == "0.10.4"