diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf8c1e..106ee2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## 2.27.2 + +([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.27.1...348c8ea202704ad1b5d87fa4ca90ccbdd541d1db)) + +### Bugs fixed + +- Load overrides once, rather than in each settings handler [#452](https://github.com/jupyterlab/jupyterlab_server/pull/452) ([@krassowski](https://github.com/krassowski)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyterlab/jupyterlab_server/graphs/contributors?from=2024-04-23&to=2024-05-22&type=c)) + +[@krassowski](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyterlab_server+involves%3Akrassowski+updated%3A2024-04-23..2024-05-22&type=Issues) + + + ## 2.27.1 ([Full Changelog](https://github.com/jupyterlab/jupyterlab_server/compare/v2.27.0...055a1695ba0aa0718764541b503bb0b5871e69c5)) @@ -16,8 +32,6 @@ [@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)) diff --git a/jupyterlab_server/_version.py b/jupyterlab_server/_version.py index 285b4b4..337efb9 100644 --- a/jupyterlab_server/_version.py +++ b/jupyterlab_server/_version.py @@ -7,7 +7,7 @@ """ import re -__version__ = "2.27.1" +__version__ = "2.27.2" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"