Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 542 Bytes

RELEASE.md

File metadata and controls

25 lines (19 loc) · 542 Bytes

Release Guide

Using jupyter_releaser

The recommended way to make a release is to use jupyter_releaser.

Manual Release

  • Update CHANGELOG

  • Run the following:

export VERSION=<version>
pip install pipx
pipx run hatch version $VERSION
git commit -a -m "Release $VERSION"
git tag $VERSION; true;
git push --all
git push --tags
rm -rf dist build
pipx run build .
pipx run twine check dist/*
pipx run twine upload dist/*