Skip to content

Commit c65706f

Browse files
Publish 1.19.0
SHA256 hashes: jupyter_server-1.19.0-py3-none-any.whl: 310531a4ed1a5088daec9b930cfda08952d1e3809d0605e4b137af0a6da11669 jupyter_server-1.19.0.tar.gz: 5d9b58c92011db1854a8ddeeac46e16bb37281e8f45156d4d0b2fb745f9561dd
1 parent 34c5f79 commit c65706f

File tree

4 files changed

+406
-9
lines changed

4 files changed

+406
-9
lines changed

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.19.0.dev0"
110+
__version__ = "1.19.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, 19, 0, ".dev", "0")
5+
version_info = (1, 19, 0, "", "")
66
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

0 commit comments

Comments
 (0)