Skip to content

Commit 8c483ff

Browse files
committed
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
1 parent 03a8313 commit 8c483ff

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

CHANGELOG.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 3.0.1
6+
7+
([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0...03a8313485357e9dde2db0751009bc2345791fbd))
8+
9+
### Bugs fixed
10+
11+
- Don't add signal handler for SIGQUIT on Windows [#399](https://github.com/jupyter-server/kernel_gateway/pull/399) ([@jackgerrits](https://github.com/jackgerrits))
12+
13+
### Maintenance and upkeep improvements
14+
15+
- Update Release Scripts [#400](https://github.com/jupyter-server/kernel_gateway/pull/400) ([@blink1073](https://github.com/blink1073))
16+
- Increase test timeout [#397](https://github.com/jupyter-server/kernel_gateway/pull/397) ([@blink1073](https://github.com/blink1073))
17+
- chore: update pre-commit hooks [#396](https://github.com/jupyter-server/kernel_gateway/pull/396) ([@pre-commit-ci](https://github.com/pre-commit-ci))
18+
19+
### Contributors to this release
20+
21+
([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))
22+
23+
[@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)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
527
## 3.0.0
628

729
([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0rc1))
@@ -10,8 +32,6 @@
1032

1133
([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))
1234

13-
<!-- <END NEW CHANGELOG ENTRY> -->
14-
1535
## 3.0.0rc1
1636

1737
([Full Changelog](https://github.com/jupyter-server/kernel_gateway/compare/v3.0.0rc0...f88571d721e3d6270351e352063a2a8685bf1682))

kernel_gateway/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from typing import List
88

99
# Version string must appear intact for automatic versioning
10-
__version__ = "3.0.0"
10+
__version__ = "3.0.1"
1111

1212
# Build up version_info tuple for backwards compatibility
1313
pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"

0 commit comments

Comments
 (0)