Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 541 Bytes

RELEASE.md

File metadata and controls

16 lines (14 loc) · 541 Bytes

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

To create a manual release, update the version number in terminado/__init__.py, then run the following:

git clean -dffx
pip install pipx
pipx run build
export script_version=`pipx run hatch version 2>/dev/null`
git commit -a -m "Release $script_version"
git tag $script_version
git push --all
git push --tags
pipx run twine check dist/*
pipx run twine upload dist/*