Skip to content

Commit 5f3072e

Browse files
committed
Publish 5.9.0
SHA256 hashes: jupyter_core-5.9.0-py3-none-any.whl: bf13431d292ce34a25568586729a3b9deb07d112289b77350dc4c2340c2f34c1 jupyter_core-5.9.0.tar.gz: 5f8fba10cfc946fe1b4037e986458fc89430397207b21d741dc399d3d42951d4
1 parent acd943f commit 5f3072e

File tree

2 files changed

+35
-3
lines changed

2 files changed

+35
-3
lines changed

CHANGELOG.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,46 @@
22

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

5+
## 5.9.0
6+
7+
([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.8.1...735131c141102c376539303564f5d305dc666333))
8+
9+
### Enhancements made
10+
11+
- nicer traceback in missing loop case outside except in run_sync [#437](https://github.com/jupyter/jupyter_core/pull/437) ([@AThePeanut4](https://github.com/AThePeanut4))
12+
13+
### Bugs fixed
14+
15+
- Fix missing `f` specifier in f-string used to print config file path [#433](https://github.com/jupyter/jupyter_core/pull/433) ([@krassowski](https://github.com/krassowski))
16+
- validate inputs to is_hidden [#429](https://github.com/jupyter/jupyter_core/pull/429) ([@minrk](https://github.com/minrk))
17+
18+
### Maintenance and upkeep improvements
19+
20+
- try to fix some downstream tests [#448](https://github.com/jupyter/jupyter_core/pull/448) ([@Carreau](https://github.com/Carreau))
21+
- remove deprecation warning, platformdirs won't become default [#447](https://github.com/jupyter/jupyter_core/pull/447) ([@minrk](https://github.com/minrk))
22+
- Bump github/codeql-action from 3 to 4 in the actions group [#446](https://github.com/jupyter/jupyter_core/pull/446) ([@dependabot](https://github.com/dependabot))
23+
- require python 3.10, start to test on 3.14 and 3.14-free-threaded [#445](https://github.com/jupyter/jupyter_core/pull/445) ([@Carreau](https://github.com/Carreau))
24+
- remove pywin32 dependancy so free-threading can fly (like pypy) [#441](https://github.com/jupyter/jupyter_core/pull/441) ([@stonebig](https://github.com/stonebig))
25+
- Bump the actions group across 1 directory with 2 updates [#440](https://github.com/jupyter/jupyter_core/pull/440) ([@dependabot](https://github.com/dependabot))
26+
27+
### Documentation improvements
28+
29+
- [Docs] Use extension:filetype mapping in sphinx configuration [#443](https://github.com/jupyter/jupyter_core/pull/443) ([@Carreau](https://github.com/Carreau))
30+
31+
### Contributors to this release
32+
33+
([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2025-05-27&to=2025-10-16&type=c))
34+
35+
[@AThePeanut4](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3AAThePeanut4+updated%3A2025-05-27..2025-10-16&type=Issues) | [@Carreau](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3ACarreau+updated%3A2025-05-27..2025-10-16&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Adependabot+updated%3A2025-05-27..2025-10-16&type=Issues) | [@krassowski](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Akrassowski+updated%3A2025-05-27..2025-10-16&type=Issues) | [@minrk](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Aminrk+updated%3A2025-05-27..2025-10-16&type=Issues) | [@nikimagic](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Anikimagic+updated%3A2025-05-27..2025-10-16&type=Issues) | [@stonebig](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Astonebig+updated%3A2025-05-27..2025-10-16&type=Issues)
36+
37+
<!-- <END NEW CHANGELOG ENTRY> -->
38+
539
<!-- START SILENT CHANGELOG ENTRY -->
640

741
## 5.8.1
842

943
<!-- END SILENT CHANGELOG ENTRY -->
1044

11-
<!-- <END NEW CHANGELOG ENTRY> -->
12-
1345
<!-- START SILENT CHANGELOG ENTRY -->
1446

1547
## 5.8.0

jupyter_core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import re
88

99
# Version string must appear intact for hatch versioning
10-
__version__ = "5.8.1"
10+
__version__ = "5.9.0"
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)