From 1ee6153177d8d45db29a60b743a0b4de092a755e Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 1 Jan 2024 21:16:16 +0000 Subject: [PATCH] Publish 5.6.1 SHA256 hashes: jupyter_core-5.6.1-py3-none-any.whl: 3d16aec2e1ec84b69f7794e49c32830c1d950ad149526aec954c100047c5f3a7 jupyter_core-5.6.1.tar.gz: 5139be639404f7f80f3db6f687f47b8a8ec97286b4fa063c984024720e7224dc --- CHANGELOG.md | 23 +++++++++++++++++++++-- jupyter_core/version.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5bab17..a25dfca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,27 @@ +## 5.6.1 + +([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.6.0...f81186b2f31fe79949fe5bcd5ea0da6b0794a8fb)) + +### Bugs fixed + +- Fix export of package version [#386](https://github.com/jupyter/jupyter_core/pull/386) ([@blink1073](https://github.com/blink1073)) +- Revert "Enable async JupyterApp" [#385](https://github.com/jupyter/jupyter_core/pull/385) ([@blink1073](https://github.com/blink1073)) + +### Maintenance and upkeep improvements + +- Bump github/codeql-action from 2 to 3 [#380](https://github.com/jupyter/jupyter_core/pull/380) ([@dependabot](https://github.com/dependabot)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2023-12-26&to=2024-01-01&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2023-12-26..2024-01-01&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Adependabot+updated%3A2023-12-26..2024-01-01&type=Issues) + + + ## 5.6.0 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.5.1...e33fb748b435de7d587d9c2bfdcbb5f3ee73b4bd)) @@ -16,8 +37,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2023-12-18..2023-12-26&type=Issues) - - ## 5.5.1 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.5.0...4e387a4e95b1064cca4a97dd7324b29d14b6e3b7)) diff --git a/jupyter_core/version.py b/jupyter_core/version.py index 31cc53b..83412d0 100644 --- a/jupyter_core/version.py +++ b/jupyter_core/version.py @@ -6,7 +6,7 @@ import re # Version string must appear intact for hatch versioning -__version__ = "5.6.0" +__version__ = "5.6.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"