Skip to content

Commit a3d29f1

Browse files
authored
Merge pull request #101 from Dyalog/2.0.2
Point release for PR#91
2 parents 9032eae + 6489e16 commit a3d29f1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

DEVELOPMENT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ git describe --tags `git rev-list --tags --max-count=1`
88

99
For 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

1313
The 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
2727
Now 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

3434
Upload release assets using [twine](https://twine.readthedocs.io/en/stable/). Install `twine` with

dyalog_kernel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Dyalog APL Jupyter kernel"""
22

3-
__version__ = '2.0.1'
3+
__version__ = '2.0.2'
44

55
from .kernel import DyalogKernel

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
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",

0 commit comments

Comments
 (0)