From a83129e27baae64e37d208c2fb41bffe980a1acb Mon Sep 17 00:00:00 2001 From: blink1073 Date: Tue, 13 Dec 2022 02:23:56 +0000 Subject: [PATCH] Publish 8.0.0b3 SHA256 hashes: jupyter_client-8.0.0b3-py3-none-any.whl: 4c45b62f31a682e1e8533c06f38f965c7ca5cf95f30f59de02d6cc42abe224a1 jupyter_client-8.0.0b3.tar.gz: 61c8b2695e8c538d595bae31840917981b1718936fc3061670c8d7d7d2af758c --- CHANGELOG.md | 18 ++++++++++++++++-- jupyter_client/_version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87857e20b..80c9ca8cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 8.0.0b3 + +([Full Changelog](https://github.com/jupyter/jupyter_client/compare/v8.0.0b2...b51a3b5d1a0d1a8ad390c1121506217909da1c4f)) + +### Bugs fixed + +- Allow interrupt during restart of pending kernels [#898](https://github.com/jupyter/jupyter_client/pull/898) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_client/graphs/contributors?from=2022-12-08&to=2022-12-13&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Ablink1073+updated%3A2022-12-08..2022-12-13&type=Issues) + + + ## 8.0.0b2 ([Full Changelog](https://github.com/jupyter/jupyter_client/compare/v8.0.0b1...ff33adf784f2bd25814d7ed6ae7c6651cee8376e)) @@ -17,8 +33,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Ablink1073+updated%3A2022-12-05..2022-12-08&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Adavidbrochart+updated%3A2022-12-05..2022-12-08&type=Issues) | [@ophie200](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Aophie200+updated%3A2022-12-05..2022-12-08&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_client+involves%3Apre-commit-ci+updated%3A2022-12-05..2022-12-08&type=Issues) - - ## 8.0.0b1 No merged PRs diff --git a/jupyter_client/_version.py b/jupyter_client/_version.py index b7ca0670c..a197880ac 100644 --- a/jupyter_client/_version.py +++ b/jupyter_client/_version.py @@ -1,7 +1,7 @@ import re from typing import List, Union -__version__ = "8.0.0b2" +__version__ = "8.0.0b3" # Build up version_info tuple for backwards compatibility pattern = r'(?P\d+).(?P\d+).(?P\d+)(?P.*)'