From 29a9aaae3d3c6b50dcbf0812e83af6c716fd40f7 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 18 Dec 2023 12:45:52 +0000 Subject: [PATCH] Publish 5.5.1 SHA256 hashes: jupyter_core-5.5.1-py3-none-any.whl: 220dfb00c45f0d780ce132bb7976b58263f81a3ada6e90a9b6823785a424f739 jupyter_core-5.5.1.tar.gz: 1553311a97ccd12936037f36b9ab4d6ae8ceea6ad2d5c90d94a909e752178e40 --- CHANGELOG.md | 24 ++++++++++++++++++++++-- jupyter_core/version.py | 2 +- 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a924626..b3ffc00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,28 @@ +## 5.5.1 + +([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.5.0...4e387a4e95b1064cca4a97dd7324b29d14b6e3b7)) + +### Bugs fixed + +- Account for read only file systems in migration [#379](https://github.com/jupyter/jupyter_core/pull/379) ([@blink1073](https://github.com/blink1073)) + +### Maintenance and upkeep improvements + +- Update ruff and typings [#376](https://github.com/jupyter/jupyter_core/pull/376) ([@blink1073](https://github.com/blink1073)) +- chore: update pre-commit hooks [#374](https://github.com/jupyter/jupyter_core/pull/374) ([@pre-commit-ci](https://github.com/pre-commit-ci)) +- Clean up lint and add downstream checks [#373](https://github.com/jupyter/jupyter_core/pull/373) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter/jupyter_core/graphs/contributors?from=2023-10-30&to=2023-12-18&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2023-10-30..2023-12-18&type=Issues) | [@mtelka](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Amtelka+updated%3A2023-10-30..2023-12-18&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Apre-commit-ci+updated%3A2023-10-30..2023-12-18&type=Issues) + + + ## 5.5.0 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.4.0...df0e9e709ebe208df799ec08030b7d7eb15c9cf9)) @@ -20,8 +42,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Ablink1073+updated%3A2023-10-10..2023-10-30&type=Issues) | [@singingwolfboy](https://github.com/search?q=repo%3Ajupyter%2Fjupyter_core+involves%3Asingingwolfboy+updated%3A2023-10-10..2023-10-30&type=Issues) - - ## 5.4.0 ([Full Changelog](https://github.com/jupyter/jupyter_core/compare/v5.3.2...d6a748262a44334f27008e8c90d2557f46481f5b)) diff --git a/jupyter_core/version.py b/jupyter_core/version.py index ababa9a..fa1247a 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.5.0" +__version__ = "5.5.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"