Skip to content

Commit 140272a

Browse files
committed
Bump version to 0.10.4
1 parent bd9daf2 commit 140272a

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-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/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)