1# Release Guide
2
3## Using `jupyter_releaser`
4
5The recommended way to make a release is to use [`jupyter_releaser`](https://github.com/jupyter-server/jupyter_releaser#checklist-for-adoption).
6
7## Manual Release
8
9- Update `CHANGELOG`
10
11- Run the following:
12
13```bash
14export VERSION=<version>
15pip install jupyter_releaser
16tbump --only-patch $VERSION
17git commit -a -m "Release $VERSION"
18git tag $VERSION; true;
19git push --all
20git push --tags
21rm -rf dist build
22python -m build .
23twine check dist/*
24twine upload dist/*
25```
26