Skip to content

Commit b3b01cc

Browse files
committed
build: Add ability to bump versions
1 parent 6249061 commit b3b01cc

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

justfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,10 @@ release version: (uv "version" version)
4242
git tag "v$(uv version --short)"
4343
git push
4444
git push --tags
45+
46+
version-bump version_bump: (uv "version" "--bump" version_bump)
47+
git add pyproject.toml
48+
git commit -m "release: 🔖 v$(uv version --short)" --no-verify
49+
git tag "v$(uv version --short)"
50+
git push
51+
git push --tags

0 commit comments

Comments
 (0)