From 12eb2a7e295ff35050827e3546a7838ef47f65ba Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 8 Jan 2024 14:46:55 +0000 Subject: [PATCH] Publish 5.7.1 SHA256 hashes: jupyter_core-5.7.1-py3-none-any.whl: c65c82126453a723a2804aa52409930434598fd9d35091d63dfb919d2b765bb7 jupyter_core-5.7.1.tar.gz: de61a9d7fc71240f688b2fb5ab659fbb56979458dc66a71decd098e03c79e218 --- CHANGELOG.md | 18 ++++++++++++++++-- jupyter_core/version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08abd89..ac33ea8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 5.7.1 + +([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.7.0...8e69e7f1b856099c057e9711d5a439b33ef859d3)) + +### Bugs fixed + +- Derive JupyterAsyncApp from JupyterApp [#389](https://github.com/jupyter/jupyter_core/pull/389) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2024-01-03&to=2024-01-08&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2024-01-03..2024-01-08&type=Issues) + + + ## 5.7.0 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.6.1...19912f49cfb9e2645e08fd1bd599b95206387d2d)) @@ -20,8 +36,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2024-01-01..2024-01-03&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Apre-commit-ci+updated%3A2024-01-01..2024-01-03&type=Issues) - - ## 5.6.1 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.6.0...f81186b2f31fe79949fe5bcd5ea0da6b0794a8fb)) diff --git a/jupyter_core/version.py b/jupyter_core/version.py index 8fcec97..6faed9a 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.7.0" +__version__ = "5.7.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"