From cca5a50acfedfb45a843acf733ddbb410634451e Mon Sep 17 00:00:00 2001 From: fcollonval Date: Mon, 8 Apr 2024 10:06:42 +0000 Subject: [PATCH] Publish 2.26.0 SHA256 hashes: jupyterlab_server-2.26.0-py3-none-any.whl: 54622cbd330526a385ee0c1fdccdff3a1e7219bf3e864a335284a1270a1973df jupyterlab_server-2.26.0.tar.gz: 9b3ba91cf2837f7f124fca36d63f3ca80ace2bed4898a63dd47e6598c1ab006f --- CHANGELOG.md | 22 ++++++++++++++++++++-- jupyterlab_server/_version.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 460187f..fa4d969 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ +## 2.26.0 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.4...2cc9672e751943f5c51af9d4174f0b4d986e74a0)) + +### New features added + +- For v2 extensions parse entrypoint data [#445](https://github.com/jupyterlab/jupyterlab_server/pull/445) ([@AshokChoudhary11](https://github.com/AshokChoudhary11)) + +### Bugs fixed + +- Ignore pageconfig file if JSON is zero-length [#444](https://github.com/jupyterlab/jupyterlab_server/pull/444) ([@holzman](https://github.com/holzman)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab_server/graphs/contributors?from=2024-03-11&to=2024-04-08&type=c)) + +[@AshokChoudhary11](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3AAshokChoudhary11+updated%3A2024-03-11..2024-04-08&type=Issues) | [@holzman](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Aholzman+updated%3A2024-03-11..2024-04-08&type=Issues) | [@manics](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Amanics+updated%3A2024-03-11..2024-04-08&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Awelcome+updated%3A2024-03-11..2024-04-08&type=Issues) + + + ## 2.25.4 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.3...15e796699f04e06db9ed23a689d454feae36ffbd)) @@ -19,8 +39,6 @@ [@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)) diff --git a/jupyterlab_server/_version.py b/jupyterlab_server/_version.py index 9a2f275..432bfeb 100644 --- a/jupyterlab_server/_version.py +++ b/jupyterlab_server/_version.py @@ -7,7 +7,7 @@ """ import re -__version__ = "2.25.4" +__version__ = "2.26.0" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"