File tree Expand file tree Collapse file tree 2 files changed +28
-3
lines changed
Expand file tree Collapse file tree 2 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 22
33<!-- <START NEW CHANGELOG ENTRY> -->
44
5+ ## 7.0.1
6+
7+ IPykernel 7.0.1 is a bug fix release to support CPython 3.14.
8+
9+ ([ Full Changelog] ( https://github.com/ipython/ipykernel/compare/v7.0.0...6d9a14a21a8e328e384ebac48e4ccbaad85b1d45 ) )
10+
11+ ### Bugs fixed
12+
13+ - Avoid overriding Thread.\_ context in Python 3.14 [ #1447 ] ( https://github.com/ipython/ipykernel/pull/1447 ) ([ @ianthomas23 ] ( https://github.com/ianthomas23 ) )
14+
15+ ### Maintenance and upkeep improvements
16+
17+ - Fix 7.x license warnings [ #1448 ] ( https://github.com/ipython/ipykernel/pull/1448 ) ([ @bollwyvl ] ( https://github.com/bollwyvl ) )
18+ - ci: Test on PyPy 3.11 instead of 3.10 [ #1444 ] ( https://github.com/ipython/ipykernel/pull/1444 ) ([ @cclauss ] ( https://github.com/cclauss ) )
19+
20+ ### Documentation improvements
21+
22+ - Clean up changelog following 7.0.0 release [ #1439 ] ( https://github.com/ipython/ipykernel/pull/1439 ) ([ @ianthomas23 ] ( https://github.com/ianthomas23 ) )
23+
24+ ### Contributors to this release
25+
26+ ([ GitHub contributors page for this release] ( https://github.com/ipython/ipykernel/graphs/contributors?from=2025-10-13&to=2025-10-14&type=c ) )
27+
28+ [ @bollwyvl ] ( https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Abollwyvl+updated%3A2025-10-13..2025-10-14&type=Issues ) | [ @Carreau ] ( https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3ACarreau+updated%3A2025-10-13..2025-10-14&type=Issues ) | [ @cclauss ] ( https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Acclauss+updated%3A2025-10-13..2025-10-14&type=Issues ) | [ @ianthomas23 ] ( https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aianthomas23+updated%3A2025-10-13..2025-10-14&type=Issues )
29+
30+ <!-- <END NEW CHANGELOG ENTRY> -->
31+
532## 7.0.0
633
734IPykernel 7.0.0 is a major release containing experimental support for [ kernel subshells] ( https://github.com/jupyter/enhancement-proposals/pull/91 ) .
@@ -50,8 +77,6 @@ For further information and to report problems please see [ipykernel 7.0.0 relea
5077
5178[@Carreau](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3ACarreau+updated%3A2025-05-16..2025-10-13&type=Issues) | [@ccordoba12](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Accordoba12+updated%3A2025-05-16..2025-10-13&type=Issues) | [@davidbrochart](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Adavidbrochart+updated%3A2025-05-16..2025-10-13&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Adependabot+updated%3A2025-05-16..2025-10-13&type=Issues) | [@fleming79](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Afleming79+updated%3A2025-05-16..2025-10-13&type=Issues) | [@ianthomas23](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aianthomas23+updated%3A2025-05-16..2025-10-13&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Akrassowski+updated%3A2025-05-16..2025-10-13&type=Issues) | [@mgorny](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Amgorny+updated%3A2025-05-16..2025-10-13&type=Issues) | [@minrk](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Aminrk+updated%3A2025-05-16..2025-10-13&type=Issues) | [@pankaj-bind](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apankaj-bind+updated%3A2025-05-16..2025-10-13&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Aipython%2Fipykernel+involves%3Apre-commit-ci+updated%3A2025-05-16..2025-10-13&type=Issues)
5279
53- <!-- <END NEW CHANGELOG ENTRY> -->
54-
5580## 6.30.1
5681
5782This is a bugfix release to fix a significant bug introduced in 6.30.0 that allowed control messages to be handled concurrently rather than sequentially which broke debugging in JupyterLab and VSCode.
Original file line number Diff line number Diff line change 55import re
66
77# Version string must appear intact for hatch versioning
8- __version__ = "7.0.0 "
8+ __version__ = "7.0.1 "
99
1010# Build up version_info tuple for backwards compatibility
1111pattern = r"(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)"
You can’t perform that action at this time.
0 commit comments