From a4f6104cc3e7e6e3391a29b48eeb57f384ee33c8 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Thu, 12 Jan 2023 16:39:26 +0000 Subject: [PATCH] Publish 1.23.5 SHA256 hashes: jupyter_server-1.23.5-py3-none-any.whl: d42e520af98af9fbb7f0fb0d069991054d88e4d2ee051eb7110aef35f3756cef jupyter_server-1.23.5.tar.gz: a2caa759e2a29ece1aad013c58215fe951f38317b97de462b921834955fe3fca --- CHANGELOG.md | 18 ++++++++++++++++-- docs/source/conf.py | 2 +- jupyter_server/_version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d688fd5f..8fda50e4a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. +## 1.23.5 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.4...2ca800829c96dc60893dc83715282b7b8fd03d59)) + +### Bugs fixed + +- Backport PR #1162: Reapply preferred_dir fix, now with better backwards compatability [#1167](https://github.com/jupyter-server/jupyter_server/pull/1167) ([@vidartf](https://github.com/vidartf)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server/graphs/contributors?from=2022-12-20&to=2023-01-12&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-12-20..2023-01-12&type=Issues) | [@Carreau](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3ACarreau+updated%3A2022-12-20..2023-01-12&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov+updated%3A2022-12-20..2023-01-12&type=Issues) | [@meeseeksdev](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ameeseeksdev+updated%3A2022-12-20..2023-01-12&type=Issues) | [@vidartf](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Avidartf+updated%3A2022-12-20..2023-01-12&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Awelcome+updated%3A2022-12-20..2023-01-12&type=Issues) + + + ## 1.23.4 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.3...0a02e42b960875ad578101670128dd0d7df83c47)) @@ -20,8 +36,6 @@ All notable changes to this project will be documented in this file. [@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-11-21..2022-12-20&type=Issues) | [@bollwyvl](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Abollwyvl+updated%3A2022-11-21..2022-12-20&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov+updated%3A2022-11-21..2022-12-20&type=Issues) | [@fcollonval](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Afcollonval+updated%3A2022-11-21..2022-12-20&type=Issues) | [@kevin-bates](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Akevin-bates+updated%3A2022-11-21..2022-12-20&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ameeseeksmachine+updated%3A2022-11-21..2022-12-20&type=Issues) | [@ofek](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Aofek+updated%3A2022-11-21..2022-12-20&type=Issues) | [@vidartf](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Avidartf+updated%3A2022-11-21..2022-12-20&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Awelcome+updated%3A2022-11-21..2022-12-20&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3AZsailer+updated%3A2022-11-21..2022-12-20&type=Issues) - - ## 1.23.3 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.2...4b19bf0f87a9fe8766ea896ac22f8bcdc3f08064)) diff --git a/docs/source/conf.py b/docs/source/conf.py index fbcf0e834e..1338bd3b6b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -107,7 +107,7 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -__version__ = "1.24.0.dev0" +__version__ = "1.23.5" # The short X.Y version. version_parsed = parse_version(__version__) version = f"{version_parsed.major}.{version_parsed.minor}" diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index da555b140b..d03578b52e 100644 --- a/jupyter_server/_version.py +++ b/jupyter_server/_version.py @@ -2,5 +2,5 @@ store the current version info of the server. """ -version_info = (1, 24, 0, ".dev", "0") +version_info = (1, 23, 5, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index 1db471f43e..84d7a14ff6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ skip = ["check-links"] post-version-spec = "dev" [tool.tbump.version] -current = "1.24.0.dev0" +current = "1.23.5" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?