Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 490 Bytes

File metadata and controls

19 lines (17 loc) · 490 Bytes

How to make a release

  1. Bump the version:
poetry version <newversion>
  1. Update the CHANGES.rst file with the release notes and the new version.
  2. Commit the changes:
git add pyproject.toml CHANGES.rst
git commit -m "Bump version to <newversion>"
  1. 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.