Bump the eos-downloader version following the project's bumpver workflow.
Usage: /bump-release [patch|minor|major] Default level: patch
Steps:
- Show current version:
uv run bumpver show - Dry-run the bump and display the diff:
uv run bumpver update --<level> --dry - Ask the user to confirm before applying
- Apply the bump:
uv run bumpver update --<level>- This updates
pyproject.tomlfields:current_versionandversion = "v{version}" - Creates a commit automatically (bumpver is configured with
commit = true)
- This updates
- Remind the user that
tag = falseandpush = falsein bumpver config — they must push manually - Suggest:
git push origin mainthen let GitHub Actions handle the release via.github/workflows/release.yml(OIDC Trusted Publishing to PyPI)
Version pattern: MAJOR.MINOR.PATCH (e.g. 0.15.0 → 0.15.1 for patch)
Source: titom73/eos-downloader — distributed by TomeVault.