File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 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`
88
99For patch releases, add 1 to the last component of the current tag.
1010
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 ` .
1212
1313The patch level should reset if we're changing major or minor version components, following semver.
1414
@@ -27,8 +27,8 @@ pip install dist/dyalog-jupyter-kernel-x.y.z.tar.gz
2727Now tag the master branch with the new version (prefixed by ` v. ` ):
2828
2929```
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
3232```
3333
3434Upload release assets using [ twine] ( https://twine.readthedocs.io/en/stable/ ) . Install ` twine ` with
Original file line number Diff line number Diff line change 11"""Dyalog APL Jupyter kernel"""
22
3- __version__ = '2.0.1 '
3+ __version__ = '2.0.2 '
44
55from .kernel import DyalogKernel
Original file line number Diff line number Diff line change 22
33setup (
44 name = "dyalog-jupyter-kernel" ,
5- version = "2.0.1 " ,
5+ version = "2.0.2 " ,
66 author = "Stefan Kruger" ,
77 author_email = "stefan@dyalog.com" ,
88 description = "Jupyter kernel for Dyalog APL" ,
You can’t perform that action at this time.
0 commit comments