Skip to content

Commit 9a55096

Browse files
committed
Publish 1.21.0
SHA256 hashes: jupyter_server-1.21.0-py3-none-any.whl: 992531008544d77e05a16251cdfbd0bdff1b1efa14760c79b9cc776ac9214cf1 jupyter_server-1.21.0.tar.gz: d0adca19913a3763359be7f0b8c2ea8bfde356f4b8edd8e3149d7d0fbfaa248b
1 parent 2f529bf commit 9a55096

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.21.0
8+
9+
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.19.1...2f529bf5d1f8c68a6b7193f474c9ba025111d743))
10+
11+
### Maintenance and upkeep improvements
12+
13+
- Handle client 8 pending kernels [#1014](https://github.com/jupyter-server/jupyter_server/pull/1014) ([@blink1073](https://github.com/blink1073))
14+
15+
### Documentation improvements
16+
17+
- Pin docutils to fix docs build [#1004](https://github.com/jupyter-server/jupyter_server/pull/1004) ([@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-09-27&to=2022-10-11&type=c))
22+
23+
[@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)
24+
25+
<!-- <END NEW CHANGELOG ENTRY> -->
26+
727
## 1.19.1
828

929
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.19.0...690d2f4131b2d65476d05b302a4b3e9a2f052650))
@@ -18,8 +38,6 @@ All notable changes to this project will be documented in this file.
1838

1939
[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-09-26..2022-09-27&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-09-26..2022-09-27&type=Issues)
2040

21-
<!-- <END NEW CHANGELOG ENTRY> -->
22-
2341
## 1.19.0
2442

2543
([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.18.1...27bc44c23fba38a4d02b3d9d9eeef45e53eb76ba))

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.20.0.dev0"
110+
__version__ = "1.21.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, 20, 0, ".dev", "0")
5+
version_info = (1, 21, 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.20.0.dev0"
37+
current = "1.21.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)