Releasing¶
Version policy¶
vcspull follows semantic versioning. Internal APIs
(everything under _internal/) carry no stability guarantee.
Release checklist¶
Update
CHANGESwith the new version and date.Bump the version in
src/vcspull/__about__.py.Create a signed tag:
git tag -s v<version>.Push the tag:
git push --tags.Publish to PyPI:
uv build && uv publish.