Skip to content

Commit

Permalink
Update justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartmaxwell committed Dec 6, 2024
1 parent d6e3a18 commit 27f26f8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,22 @@ uv-tool := "uv tool run"
@bump *ARGS:
uv run bumpver update --patch {{ ARGS }}
uv sync
git add uv.lock
git commit -m "Bump version"
git push

# Use BumpVer to increase the minor version number. Use just bump -d to view a dry-run.
@bump-minor *ARGS:
uv run bumpver update --minor {{ ARGS }}
uv sync
git add uv.lock
git commit -m "Bump version"
git push

# Use BumpVer to increase the major version number. Use just bump -d to view a dry-run.
@bump-major *ARGS:
uv run bumpver update --major {{ ARGS }}
uv sync
git add uv.lock
git commit -m "Bump version"
git push

0 comments on commit 27f26f8

Please sign in to comment.