diff --git a/CHANGELOG.md b/CHANGELOG.md index af40716..1cf8c1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 2.27.1 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.27.0...055a1695ba0aa0718764541b503bb0b5871e69c5)) + +### Bugs fixed + +- Move ENV_CONFIG_PATH import back into \_get_config_manager [#450](https://github.com/jupyterlab/jupyterlab_server/pull/450) ([@divyansshhh](https://github.com/divyansshhh)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab_server/graphs/contributors?from=2024-04-22&to=2024-04-23&type=c)) + +[@divyansshhh](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Adivyansshhh+updated%3A2024-04-22..2024-04-23&type=Issues) + + + ## 2.27.0 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.26.0...951b54c234a30aa2c8825d43a372ae812fd6dc78)) @@ -16,8 +32,6 @@ [@divyansshhh](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Adivyansshhh+updated%3A2024-04-08..2024-04-22&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Awelcome+updated%3A2024-04-08..2024-04-22&type=Issues) - - ## 2.26.0 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.25.4...2cc9672e751943f5c51af9d4174f0b4d986e74a0)) diff --git a/jupyterlab_server/_version.py b/jupyterlab_server/_version.py index 9569461..285b4b4 100644 --- a/jupyterlab_server/_version.py +++ b/jupyterlab_server/_version.py @@ -7,7 +7,7 @@ """ import re -__version__ = "2.27.0" +__version__ = "2.27.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"