Skip to content

Commit

Permalink
fixing release type number
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf committed May 7, 2020
1 parent 80d6f00 commit 6a0df85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions RELEASE.md
Expand Up @@ -27,9 +27,10 @@ To cut a new Jupyter Sphinx release, follow these steps:
to build `jupyter-sphinx` and push the new version to PyPI.
[Confirm that the version has been bumped](https://pypi.org/project/jupyter-sphinx/).
* In [`_version.py`](https://github.com/jupyter/jupyter-sphinx/blob/master/jupyter_sphinx/_version.py),
bump the minor version and change the "release type" section to "alpha" e.g.:
bump the minor version and change the "release type" section to "alpha". **make sure to
include a number after the release type**, e.g.:

```python
version_info = (0, 2, 4, "alpha")
version_info = (0, 2, 4, "alpha", 1)
```
* That's it!
2 changes: 1 addition & 1 deletion jupyter_sphinx/_version.py
@@ -1,4 +1,4 @@
version_info = (0, 2, 5, "alpha")
version_info = (0, 2, 5, "alpha", 1)

_specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}

Expand Down

0 comments on commit 6a0df85

Please sign in to comment.