From 9ea909732fda6b7a674a8b7aa8233602e0b6af52 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Wed, 3 Jan 2024 17:00:07 +0000 Subject: [PATCH] Publish 5.7.0 SHA256 hashes: jupyter_core-5.7.0-py3-none-any.whl: 16eea462f7dad23ba9f86542bdf17f830804e2028eb48d609b6134d91681e983 jupyter_core-5.7.0.tar.gz: cb8d3ed92144d2463a3c5664fdd686a3f0c1442ea45df8babb1c1a9e6333fe03 --- CHANGELOG.md | 22 ++++++++++++++++++++-- jupyter_core/version.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a25dfca..08abd89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## 5.7.0 + +([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.6.1...19912f49cfb9e2645e08fd1bd599b95206387d2d)) + +### Enhancements made + +- Modernize event loop behavior [#387](https://github.com/jupyter/jupyter_core/pull/387) ([@blink1073](https://github.com/blink1073)) + +### Maintenance and upkeep improvements + +- chore: update pre-commit hooks [#388](https://github.com/jupyter/jupyter_core/pull/388) ([@pre-commit-ci](https://github.com/pre-commit-ci)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2024-01-01&to=2024-01-03&type=c)) + +[@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)) @@ -21,8 +41,6 @@ [@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)) diff --git a/jupyter_core/version.py b/jupyter_core/version.py index 83412d0..8fcec97 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.1" +__version__ = "5.7.0" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"