Skip to content

Commit e62d7b4

Browse files
authored
Merge pull request #438 from facultyai/postrelease-0.10.4
Postrelease 0.10.4
2 parents d7b70c9 + 1dc1df3 commit e62d7b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

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

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",
3+
"version": "0.10.5-dev",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def postrelease(ctx, version):
139139
set_jsversion(new_version)
140140
run(f"git checkout -b postrelease-{version}")
141141
run(
142-
"git add package.json package-lock.json "
142+
"git add package.json package-lock.json tests/test_version.py"
143143
"dash_bootstrap_components/_version.py"
144144
)
145145
run('git commit -m "Back to dev"')

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"
5+
assert __version__ == "0.10.5-dev"

0 commit comments

Comments
 (0)