From e5fe191e6a826ce68525fcf63e2f7ff8f864965a Mon Sep 17 00:00:00 2001 From: Hisenberg Date: Wed, 1 Jul 2026 12:31:09 +0200 Subject: [PATCH] docs: release Slightly improve release docs. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a21535f..3d4858b 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ If the plain2code client crashes unexpectedly, it sends an anonymous crash repor Releases are built and published with [uv](https://docs.astral.sh/uv/). The version is read from `_version.py`. -1. Bump the version in `_version.py` and commit/tag (`git tag v`). +1. Bump the version in `_version.py`, commit it and create new tag (`git tag v`). 2. Build the distributions: ```bash uv build --python 3.11 @@ -102,7 +102,7 @@ Releases are built and published with [uv](https://docs.astral.sh/uv/). The vers uv publish dist/codeplain-* ``` Authenticate with `UV_PUBLISH_TOKEN=pypi-...` (recommended), `--token pypi-...`, or `--username __token__ --password pypi-...`. -6. Push the tag: `git push origin v`. +6. Push the `main` branch (with version commit) and push the tag: `git push origin v`. ## Additional Resources