- Bump the version:
poetry version <newversion>- Update the CHANGES.rst file with the release notes and the new version.
- Commit the changes:
git add pyproject.toml CHANGES.rst
git commit -m "Bump version to <newversion>"- Create and push a tag:
git tag <newversion>
git push origin <newversion>The GitHub Actions workflow will automatically build and publish the package to PyPI when a tag is pushed.