From 1290232d31febe388c8dadc6c8fc61b49bf30498 Mon Sep 17 00:00:00 2001 From: bronsen Date: Sat, 21 Feb 2026 01:29:01 +0100 Subject: [PATCH] just: we should stage the new version info and push changes --- justfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index b6725fd..b525135 100644 --- a/justfile +++ b/justfile @@ -69,9 +69,12 @@ bump segment: release segment: #!/usr/bin/bash export tag=$(uv version --short --output-format text --frozen --bump {{ segment }}) - export body=$(cat changelog.md) + git add pyproject.toml uv.lock + git commit -m "Release version $tag" + git push git tag v$tag - uv build --wheel --clear git push origin tag v$tag - fj release create "$tag" --draft --tag $tag --attach dist/*.whl --body "$body" + uv build --wheel --clear + export body=$(cat changelog.md) + fj release create "v$tag" --draft --tag v$tag --attach dist/*.whl --body "$body" uv run twine upload --config-file ~/.config/pypirc --repository code.cbo dist/*.whl