Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 286 Bytes

RELEASE.md

File metadata and controls

22 lines (15 loc) · 286 Bytes

Releasing

Upload to PyPI

  • Update version on __about__.py
  • Update CHANGELOG.md
export VERSION=1.0.0

# Optional reset
task clean

task build
rye publish

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

git push origin ${VERSION}
git push