Skip to content

Commit 6a0df85

Browse files
committed
fixing release type number
1 parent 80d6f00 commit 6a0df85

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

RELEASE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ To cut a new Jupyter Sphinx release, follow these steps:
2727
to build `jupyter-sphinx` and push the new version to PyPI.
2828
[Confirm that the version has been bumped](https://pypi.org/project/jupyter-sphinx/).
2929
* In [`_version.py`](https://github.com/jupyter/jupyter-sphinx/blob/master/jupyter_sphinx/_version.py),
30-
bump the minor version and change the "release type" section to "alpha" e.g.:
30+
bump the minor version and change the "release type" section to "alpha". **make sure to
31+
include a number after the release type**, e.g.:
3132

3233
```python
33-
version_info = (0, 2, 4, "alpha")
34+
version_info = (0, 2, 4, "alpha", 1)
3435
```
3536
* That's it!

jupyter_sphinx/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version_info = (0, 2, 5, "alpha")
1+
version_info = (0, 2, 5, "alpha", 1)
22

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

0 commit comments

Comments
 (0)