diff --git a/dash_bootstrap_components/_version.py b/dash_bootstrap_components/_version.py index bca70ec30..d9b054ab1 100644 --- a/dash_bootstrap_components/_version.py +++ b/dash_bootstrap_components/_version.py @@ -1 +1 @@ -__version__ = "0.10.4-dev" +__version__ = "0.10.4" diff --git a/docs/content/changelog.md b/docs/content/changelog.md index 5b8a718da..11db7e4dc 100644 --- a/docs/content/changelog.md +++ b/docs/content/changelog.md @@ -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 diff --git a/docs/requirements.txt b/docs/requirements.txt index 9ee89f593..bc6e57ff0 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,5 +1,5 @@ dash==1.14.0 -dash_bootstrap_components==0.10.3 +dash_bootstrap_components==0.10.4 gunicorn markdown pandas diff --git a/package-lock.json b/package-lock.json index 02b9242e7..fd11685ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "dash-bootstrap-components", - "version": "0.10.4-dev", + "version": "0.10.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bab6b99c6..e3e2fec77 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tasks.py b/tasks.py index 9b3f4dc65..783f3d08b 100644 --- a/tasks.py +++ b/tasks.py @@ -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") diff --git a/tests/test_version.py b/tests/test_version.py index 99d16b6b1..e0350f81a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.10.4-dev" + assert __version__ == "0.10.4"