From 92c856eea53319fac82971731cc9d208db4861d7 Mon Sep 17 00:00:00 2001 From: blink1073 Date: Mon, 14 Nov 2022 11:34:04 +0000 Subject: [PATCH] Publish 1.23.2 SHA256 hashes: jupyter_server-1.23.2-py3-none-any.whl: c01d0e84c22a14dd6b0e7d8ce4105b08a3426b46582668e28046a64c07311a4f jupyter_server-1.23.2.tar.gz: 69cb954ef02c0ba1837787e34e4a1240c93c8eb590662fae1840778861957660 --- 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 28ca7b5f0a..0850785433 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.2 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.1...1eed592ce93d8863a243f38e327d4a433cfd4b76)) + +### Maintenance and upkeep improvements + +- Fix config merge test for Jupyter Core 5.0 [#1068](https://github.com/jupyter-server/jupyter_server/pull/1068) ([@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=2022-11-09&to=2022-11-14&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-11-09..2022-11-14&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov+updated%3A2022-11-09..2022-11-14&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-11-09..2022-11-14&type=Issues) + + + ## 1.23.1 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.0...0d8a17939615eafe7a38fb417b7559f4ec6ccf03)) @@ -18,8 +34,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-07..2022-11-09&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-11-07..2022-11-09&type=Issues) - - ## 1.23.0 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.21.0...16953940a16762329ef8f26c8c6d13a91defe0d3)) diff --git a/docs/source/conf.py b/docs/source/conf.py index fbcf0e834e..9eb255a975 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.2" # 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..18b99ef72b 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, 2, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index cdbc3165e3..af7468cb10 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.2" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?