Skip to content

Commit

Permalink
Publish 1.18.0
Browse files Browse the repository at this point in the history
SHA256 hashes:

jupyter_server-1.18.0-py3-none-any.whl: 06103b71740eaa80aac1b3918da1b22125d3d649386c91fa236de753934bd6c8

jupyter_server-1.18.0.tar.gz: b65ea1d24038dc32c80b916c89005ae8d1d70f6ede0d314230e93b329b7e845a
  • Loading branch information
github-actions[bot] committed Jun 23, 2022
1 parent c867b2b commit 6d0803b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
__version__ = "1.18.0.dev0"
__version__ = "1.18.0"
# The short X.Y version.
version_parsed = parse_version(__version__)
version = f"{version_parsed.major}.{version_parsed.minor}"
Expand Down
2 changes: 1 addition & 1 deletion jupyter_server/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
store the current version info of the server.
"""
version_info = (1, 18, 0, ".dev", "0")
version_info = (1, 18, 0, "", "")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ skip = ["check-links"]
post-version-spec = "dev"

[tool.tbump.version]
current = "1.18.0.dev0"
current = "1.18.0"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
Expand Down

0 comments on commit 6d0803b

Please sign in to comment.