Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 268 Bytes

RELEASE.md

File metadata and controls

17 lines (14 loc) · 268 Bytes

How to releae a new version

export VERSION=1.0.0
git commit -am "Release ${VERSION}" --allow-empty
git tag -a ${VERSION} -m "${VERSION}"
git push origin ${VERSION}
git push
make build
make upload-pypi

# Or to upload to test-pypi
make upload-test