Skip to content

Commit 37bf658

Browse files
committed
Publish 1.23.0
SHA256 hashes: jupyter_server-1.23.0-py3-none-any.whl: 0adbb94fc41bc5d7217a17c51003fea7d0defb87d8a6aff4b95fa45fa029e129 jupyter_server-1.23.0.tar.gz: 45d706e049ca2486491b1bb459c04f34966a606018be5b16287c91e33689e359
1 parent 1695394 commit 37bf658

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

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

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

7+
## 1.23.0
8+
9+
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.21.0...16953940a16762329ef8f26c8c6d13a91defe0d3))
10+
11+
### Enhancements made
12+
13+
- Backport-1046: Pass kernel environment to `cwd_for_path` method (#1046) [#1051](https://github.com/jupyter-server/jupyter_server/pull/1051) ([@divyansshhh](https://github.com/divyansshhh))
14+
15+
### Maintenance and upkeep improvements
16+
17+
- \[1.x\] Switch to releaser v2 and update workflows [#1052](https://github.com/jupyter-server/jupyter_server/pull/1052) ([@blink1073](https://github.com/blink1073))
18+
19+
### Contributors to this release
20+
21+
([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server/graphs/contributors?from=2022-10-11&to=2022-11-07&type=c))
22+
23+
[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-10-11..2022-11-07&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-10-11..2022-11-07&type=Issues) | [@divyansshhh](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Adivyansshhh+updated%3A2022-10-11..2022-11-07&type=Issues)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
727
## 1.21.0
828

929
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.19.1...2f529bf5d1f8c68a6b7193f474c9ba025111d743))
@@ -22,8 +42,6 @@ All notable changes to this project will be documented in this file.
2242

2343
[@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-09-27..2022-10-11&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ameeseeksmachine+updated%3A2022-09-27..2022-10-11&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Awelcome+updated%3A2022-09-27..2022-10-11&type=Issues)
2444

25-
<!-- <END NEW CHANGELOG ENTRY> -->
26-
2745
## 1.19.1
2846

2947
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.19.0...690d2f4131b2d65476d05b302a4b3e9a2f052650))

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.22.0.dev0"
110+
__version__ = "1.23.0"
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, 22, 0, ".dev", "0")
5+
version_info = (1, 23, 0, "", "")
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
@@ -34,7 +34,7 @@ skip = ["check-links"]
3434
post-version-spec = "dev"
3535

3636
[tool.tbump.version]
37-
current = "1.22.0.dev0"
37+
current = "1.23.0"
3838
regex = '''
3939
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4040
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

0 commit comments

Comments
 (0)