File tree 3 files changed +5
-5
lines changed 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ git describe --tags `git rev-list --tags --max-count=1`
8
8
9
9
For patch releases, add 1 to the last component of the current tag.
10
10
11
- Update the ` __version__ ` string in ` dyalog_kernel/__main__ .py ` accordingly, and the ` version ` key in ` setup.py ` .
11
+ Update the ` __version__ ` string in ` dyalog_kernel/__init__ .py ` accordingly, and the ` version ` key in ` setup.py ` .
12
12
13
13
The patch level should reset if we're changing major or minor version components, following semver.
14
14
@@ -27,8 +27,8 @@ pip install dist/dyalog-jupyter-kernel-x.y.z.tar.gz
27
27
Now tag the master branch with the new version (prefixed by ` v. ` ):
28
28
29
29
```
30
- git tag -a v2.0.1 -m "Release version 2.0.1 "
31
- git push origin v2.0.1
30
+ git tag -a v2.0.2 -m "Release version 2.0.2 "
31
+ git push origin v2.0.2
32
32
```
33
33
34
34
Upload release assets using [ twine] ( https://twine.readthedocs.io/en/stable/ ) . Install ` twine ` with
Original file line number Diff line number Diff line change 1
1
"""Dyalog APL Jupyter kernel"""
2
2
3
- __version__ = '2.0.1 '
3
+ __version__ = '2.0.2 '
4
4
5
5
from .kernel import DyalogKernel
Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = "dyalog-jupyter-kernel" ,
5
- version = "2.0.1 " ,
5
+ version = "2.0.2 " ,
6
6
author = "Stefan Kruger" ,
7
7
author_email = "stefan@dyalog.com" ,
8
8
description = "Jupyter kernel for Dyalog APL" ,
You can’t perform that action at this time.
0 commit comments