From 51ecf4f23eb4a9659bb9b270f6f31d471dc80017 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 11 Mar 2024 14:35:56 +0000 Subject: [PATCH] Publish 2.25.4 SHA256 hashes: jupyterlab_server-2.25.4-py3-none-any.whl: eb645ecc8f9b24bac5decc7803b6d5363250e16ec5af814e516bc2c54dd88081 jupyterlab_server-2.25.4.tar.gz: 2098198e1e82e0db982440f9b5136175d73bea2cd42a6480aa6fd502cb23c4f9 --- CHANGELOG.md | 21 +++++++++++++++++++-- jupyterlab_server/_version.py | 2 +- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d7bc53..460187f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ +## 2.25.4 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.3...15e796699f04e06db9ed23a689d454feae36ffbd)) + +### Maintenance and upkeep improvements + +- Use updated releaser workflows [#442](https://github.com/jupyterlab/jupyterlab_server/pull/442) ([@blink1073](https://github.com/blink1073)) +- Use json5 typings [#441](https://github.com/jupyterlab/jupyterlab_server/pull/441) ([@blink1073](https://github.com/blink1073)) +- Enforce pytest 7 [#439](https://github.com/jupyterlab/jupyterlab_server/pull/439) ([@blink1073](https://github.com/blink1073)) +- Fix test util typings [#437](https://github.com/jupyterlab/jupyterlab_server/pull/437) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab_server/graphs/contributors?from=2024-02-14&to=2024-03-11&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Ablink1073+updated%3A2024-02-14..2024-03-11&type=Issues) + + + ## 2.25.3 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.2...f30fddb8f5d3acb688a3c8a75e92c386b75a18dd)) @@ -27,8 +46,6 @@ [@blink1073](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Ablink1073+updated%3A2023-11-18..2024-02-14&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Adependabot+updated%3A2023-11-18..2024-02-14&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Afcollonval+updated%3A2023-11-18..2024-02-14&type=Issues) | [@itsmevichu](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Aitsmevichu+updated%3A2023-11-18..2024-02-14&type=Issues) | [@JasonWeill](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3AJasonWeill+updated%3A2023-11-18..2024-02-14&type=Issues) | [@pre-commit-ci](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Apre-commit-ci+updated%3A2023-11-18..2024-02-14&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Awelcome+updated%3A2023-11-18..2024-02-14&type=Issues) - - ## 2.25.2 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.1...20a463e065f7cb38ee607cce95c30b6915c80f1a)) diff --git a/jupyterlab_server/_version.py b/jupyterlab_server/_version.py index ce7b8eb..9a2f275 100644 --- a/jupyterlab_server/_version.py +++ b/jupyterlab_server/_version.py @@ -7,7 +7,7 @@ """ import re -__version__ = "2.25.3" +__version__ = "2.25.4" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"