From 8c483ff06e6b88a579137b5045d3b90c2826b8b0 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Tue, 12 Mar 2024 17:51:18 +0000 Subject: [PATCH] Publish 3.0.1 SHA256 hashes: jupyter_kernel_gateway-3.0.1-py3-none-any.whl: 9f74a2f4ff9f03737bcab79f44ae0f6473ee32deb30fce00b8f05adcdd023f03 jupyter_kernel_gateway-3.0.1.tar.gz: 900690c4c0e796867355468d685f7fa1cf3c7775d08e871c157f77d65fbd6d7f --- CHANGELOG.md | 24 ++++++++++++++++++++++-- kernel_gateway/_version.py | 2 +- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba2136b..594a8fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ +## 3.0.1 + +([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0...03a8313485357e9dde2db0751009bc2345791fbd)) + +### Bugs fixed + +- Don't add signal handler for SIGQUIT on Windows [#399](https://github.com/jupyter-server/kernel_gateway/pull/399) ([@jackgerrits](https://github.com/jackgerrits)) + +### Maintenance and upkeep improvements + +- Update Release Scripts [#400](https://github.com/jupyter-server/kernel_gateway/pull/400) ([@blink1073](https://github.com/blink1073)) +- Increase test timeout [#397](https://github.com/jupyter-server/kernel_gateway/pull/397) ([@blink1073](https://github.com/blink1073)) +- chore: update pre-commit hooks [#396](https://github.com/jupyter-server/kernel_gateway/pull/396) ([@pre-commit-ci](https://github.com/pre-commit-ci)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/kernel_gateway/graphs/contributors?from=2024-02-06&to=2024-03-12&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fkernel_gateway+involves%3Ablink1073+updated%3A2024-02-06..2024-03-12&type=Issues) | [@jackgerrits](https://github.com/search?q=repo%3Ajupyter-server%2Fkernel_gateway+involves%3Ajackgerrits+updated%3A2024-02-06..2024-03-12&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter-server%2Fkernel_gateway+involves%3Apre-commit-ci+updated%3A2024-02-06..2024-03-12&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fkernel_gateway+involves%3Awelcome+updated%3A2024-02-06..2024-03-12&type=Issues) + + + ## 3.0.0 ([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0rc1)) @@ -10,8 +32,6 @@ ([GitHub contributors page for this release](https://github.com/jupyter-server/kernel_gateway/graphs/contributors?from=2024-01-29&to=2024-02-06&type=c)) - - ## 3.0.0rc1 ([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0rc0...f88571d721e3d6270351e352063a2a8685bf1682)) diff --git a/kernel_gateway/_version.py b/kernel_gateway/_version.py index ae2bc12..983483f 100644 --- a/kernel_gateway/_version.py +++ b/kernel_gateway/_version.py @@ -7,7 +7,7 @@ from typing import List # Version string must appear intact for automatic versioning -__version__ = "3.0.0" +__version__ = "3.0.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"