From f91d95b83c43a7a28c4b83dcf782ea02ba7a1733 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Wed, 25 Oct 2023 11:08:44 +0000 Subject: [PATCH] Publish 2.9.1 SHA256 hashes: jupyter_server-2.9.1-py3-none-any.whl: 21ad1a3d455d5a79ce4bef5201925cd17510c17898cf9d54e3ccfb6b12734948 jupyter_server-2.9.1.tar.gz: 9ba71be4b9c16e479e4c50c929f8ac4b1015baf90237a08681397a98c76c7e5e --- CHANGELOG.md | 18 ++++++++++++++++-- jupyter_server/_version.py | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 270218b57b..219c1f5259 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. +## 2.9.1 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v2.9.0...bb293ec5cac5b277259f27e458da60fa8a926f46)) + +### Bugs fixed + +- Revert "Update kernel env to reflect changes in session." [#1346](https://github.com/jupyter-server/jupyter_server/pull/1346) ([@blink1073](https://github.com/blink1073)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server/graphs/contributors?from=2023-10-25&to=2023-10-25&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2023-10-25..2023-10-25&type=Issues) + + + ## 2.9.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v2.8.0...3438ddb16575155e98fc4f49700fff420088c8b0)) @@ -23,8 +39,6 @@ All notable changes to this project will be documented in this file. [@akshaychitneni](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Aakshaychitneni+updated%3A2023-10-16..2023-10-25&type=Issues) | [@Carreau](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3ACarreau+updated%3A2023-10-16..2023-10-25&type=Issues) | [@ojarjur](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Aojarjur+updated%3A2023-10-16..2023-10-25&type=Issues) - - ## 2.8.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v2.7.3...a984e0771da5db4a14e9ac86a392ad3592b863e5)) diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index 5addcf85d5..6cfed5bac1 100644 --- a/jupyter_server/_version.py +++ b/jupyter_server/_version.py @@ -6,7 +6,7 @@ from typing import List # Version string must appear intact for automatic versioning -__version__ = "2.10.0.dev0" +__version__ = "2.9.1" # Build up version_info tuple for backwards compatibility pattern = r"(?P\d+).(?P\d+).(?P\d+)(?P.*)"