Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 280 Bytes

RELEASE.md

File metadata and controls

21 lines (15 loc) · 280 Bytes

Releasing

Upload to PyPI

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

# Build
just js:build
just build
just publish

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

git push origin ${VERSION}
git push