Skip to content

Commit 92c856e

Browse files
committed
Publish 1.23.2
SHA256 hashes: jupyter_server-1.23.2-py3-none-any.whl: c01d0e84c22a14dd6b0e7d8ce4105b08a3426b46582668e28046a64c07311a4f jupyter_server-1.23.2.tar.gz: 69cb954ef02c0ba1837787e34e4a1240c93c8eb590662fae1840778861957660
1 parent 1eed592 commit 92c856e

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
44

55
<!-- <START NEW CHANGELOG ENTRY> -->
66

7+
## 1.23.2
8+
9+
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.1...1eed592ce93d8863a243f38e327d4a433cfd4b76))
10+
11+
### Maintenance and upkeep improvements
12+
13+
- Fix config merge test for Jupyter Core 5.0 [#1068](https://github.com/jupyter-server/jupyter_server/pull/1068) ([@blink1073](https://github.com/blink1073))
14+
15+
### Contributors to this release
16+
17+
([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))
18+
19+
[@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)
20+
21+
<!-- <END NEW CHANGELOG ENTRY> -->
22+
723
## 1.23.1
824

925
([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.
1834

1935
[@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)
2036

21-
<!-- <END NEW CHANGELOG ENTRY> -->
22-
2337
## 1.23.0
2438

2539
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.21.0...16953940a16762329ef8f26c8c6d13a91defe0d3))

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
# |version| and |release|, also used in various other places throughout the
108108
# built documents.
109109
#
110-
__version__ = "1.24.0.dev0"
110+
__version__ = "1.23.2"
111111
# The short X.Y version.
112112
version_parsed = parse_version(__version__)
113113
version = f"{version_parsed.major}.{version_parsed.minor}"

jupyter_server/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
store the current version info of the server.
33
44
"""
5-
version_info = (1, 24, 0, ".dev", "0")
5+
version_info = (1, 23, 2, "", "")
66
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ skip = ["check-links"]
3535
post-version-spec = "dev"
3636

3737
[tool.tbump.version]
38-
current = "1.24.0.dev0"
38+
current = "1.23.2"
3939
regex = '''
4040
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4141
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

0 commit comments

Comments
 (0)