jupyter-remote-desktop-proxy
is a package available on PyPI.
These are the instructions on how to make a release.
- Push rights to this GitHub repository
-
Create a PR updating
CHANGELOG.md
with github-activity and continue when its merged.Advice on this procedure can be found in this team compass issue.
-
Checkout main and make sure it is up to date.
git checkout main git fetch origin main git reset --hard origin/main
-
Update the version, make commits, and push a git tag with
tbump
.pip install tbump
tbump
will ask for confirmation before doing anything.# Example versions to set: 1.0.0, 1.0.0b1 VERSION= tbump ${VERSION}
Following this, the CI system will build and publish a release.
-
Reset the version back to dev, e.g.
1.0.1.dev
after releasing1.0.0
.# Example version to set: 1.0.1.dev NEXT_VERSION= tbump --no-tag ${NEXT_VERSION}.dev