Skip to content

Commit b379967

Browse files
authored
Merge pull request #444 from facultyai/postrelease-0.10.5
Back to dev
2 parents ec83844 + 1a1cdaf commit b379967

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.5"
1+
__version__ = "0.10.6-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.5",
3+
"version": "0.10.6-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 tests/test_version.py"
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.5"
5+
assert __version__ == "0.10.6-dev"

0 commit comments

Comments
 (0)