notebook/RELEASE.md
Steven Silvester b75ee54f56
Update Manual Release Instructions (#6152)
* Update RELEASE.md

Use `jupyter_releaser` for its build dependencies (`build`, `twine`, `tbump`)

* Update RELEASE.md
2021-08-25 11:57:37 -05:00

81 lines
1.5 KiB
Markdown

# Making a Release of Notebook
## Using `jupyter_releaser`
The recommended way to make a release is to use [`jupyter_releaser`](https://github.com/jupyter-server/jupyter_releaser#checklist-for-adoption).
## Manual Release Process
### Start from a fresh git checkout and conda environment
#### Set the release branch
```bash
export release_branch=master
```
#### Create the git checkout
```bash
git clone git@github.com:jupyter/notebook.git
cd notebook
git checkout ${release_banch}
```
#### Create and activate the conda environment
```bash
conda create -n notebook-release -c conda-forge jupyter
conda activate notebook-release
```
### Perform a local dev install
```bash
pip install -ve .
```
### Install release dependencies
```bash
conda install -c conda-forge nodejs babel
npm install -g po2json
pip install jupyter_releaser # used for build dependencies (build, twine, tbump)
```
### Update the version
```bash
tbump --only-patch <new_version> # set the new version
python setup.py jsversion
git commit -am "Release $(python setup.py --version)"
git tag $(python setup.py --version)
```
### Create the artifacts
```bash
rm -rf dist
python -m build .
```
### Upload the artifacts
```bash
twine check dist/* && twine upload dist/*
```
### Change back to dev version
```bash
tbump --only-patch <dev_version> # Add the .dev suffix
python setup.py jsversion
git commit -am "Back to dev version"
```
### Push the commits and tags
```bash
git push origin ${release_branch} --tags
```