Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 346 Bytes

RELEASE.md

File metadata and controls

24 lines (17 loc) · 346 Bytes

Releasing

Upload to PyPI

  • Update version on __init__.py
  • Update version on pyproject.toml
  • Update CHANGELOG.md
  • Update README.md
export VERSION=1.0.0

# Optional reset
make clean

make all
make upload-pypi

git commit -am "Release ${VERSION}" --allow-empty
git tag ${VERSION}

git push origin ${VERSION}
git push