Skip to content

Commit 86f1978

Browse files
authored
Prerelease 2.0.5-rc1 (#1154)
* Prerelease 2.0.5-rc1 * Make sure updated pyproject.toml is committed
1 parent 2335d9b commit 86f1978

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ jobs:
9090
commit_message: Back to dev
9191
branch: main
9292
push_options: --force
93-
file_pattern: package.json tests/test_version.py uv.lock
93+
file_pattern: package.json tests/test_version.py pyproject.toml uv.lock

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ build: clean && _build-py
5151
# Create and push a prerelease branch
5252
prerelease version: (_set-source-version version)
5353
git checkout -b prerelease/{{version}}
54-
git add package.json tests/test_version.py uv.lock
54+
git add package.json tests/test_version.py pyproject.toml uv.lock
5555
git commit -m "Prerelease {{version}}"
5656
git push origin prerelease/{{version}}
5757

5858
# Create and push a release branch
5959
release version: (_set-source-version version)
6060
git checkout -b release/{{version}}
61-
git add package.json tests/test_version.py uv.lock
61+
git add package.json tests/test_version.py pyproject.toml uv.lock
6262
git commit -m "Release {{version}}"
6363
git push origin release/{{version}}
6464

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": "2.0.5-dev",
3+
"version": "2.0.5-rc1",
44
"description": "Bootstrap components for Plotly Dash",
55
"repository": "github:dbc-team/dash-bootstrap-components",
66
"main": "lib/dash-bootstrap-components.min.js",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "dash-bootstrap-components"
3-
version = "2.0.5.dev0"
3+
version = "2.0.5rc1"
44
description = "Bootstrap themed components for use in Plotly Dash"
55
readme = "README.md"
66
license = { file = "LICENSE" }

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__ == "2.0.5.dev0"
5+
assert __version__ == "2.0.5rc1"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)