Skip to content

Point release for PR#91 #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git describe --tags `git rev-list --tags --max-count=1`

For patch releases, add 1 to the last component of the current tag.

Update the `__version__` string in `dyalog_kernel/__main__.py` accordingly, and the `version` key in `setup.py`.
Update the `__version__` string in `dyalog_kernel/__init__.py` accordingly, and the `version` key in `setup.py`.

The patch level should reset if we're changing major or minor version components, following semver.

Expand All @@ -27,8 +27,8 @@ pip install dist/dyalog-jupyter-kernel-x.y.z.tar.gz
Now tag the master branch with the new version (prefixed by `v.`):

```
git tag -a v2.0.1 -m "Release version 2.0.1"
git push origin v2.0.1
git tag -a v2.0.2 -m "Release version 2.0.2"
git push origin v2.0.2
```

Upload release assets using [twine](https://twine.readthedocs.io/en/stable/). Install `twine` with
Expand Down
2 changes: 1 addition & 1 deletion dyalog_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Dyalog APL Jupyter kernel"""

__version__ = '2.0.1'
__version__ = '2.0.2'

from .kernel import DyalogKernel
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="dyalog-jupyter-kernel",
version="2.0.1",
version="2.0.2",
author="Stefan Kruger",
author_email="stefan@dyalog.com",
description="Jupyter kernel for Dyalog APL",
Expand Down