In pyproject.toml:
version = "1.0.0"
In cobi/__init__.py:
__version__ = "1.0.0"
git add .
git commit -m "Release version 1.0.0"
git tag v1.0.0
git push origin v1.0.0
On GitHub:
- Go to your repo
- Click Releases
- Click Draft a new release
- Select tag v1.0.0
- Add release notes
- Publish
This creates a proper versioned release page.