Skip to content

Commit

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

jupyter_server-2.0.0rc0-py3-none-any.whl: 6962af692e6a4e9028a335b1ad7d684bc0bdb80a70278b5fe07320668af9448e

jupyter_server-2.0.0rc0.tar.gz: 707bac1c29d795c7d84774e24545b5a9d1c9a6033313c5b1c72c327cf6127a89
  • Loading branch information
github-actions[bot] committed Sep 13, 2022
1 parent ffcee75 commit 0fc4fcc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
__version__ = "2.1.0.dev0"
__version__ = "2.0.0rc0"
# 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 = (2, 1, 0, ".dev", "0")
version_info = (2, 0, 0, "rc", "0")
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "jupyter_server"
version = "2.1.0.dev0"
version = "2.0.0rc0"
readme = "README.md"
license = { file = "COPYING.md" }
description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications."
Expand Down Expand Up @@ -120,7 +120,7 @@ post-version-spec = "dev"
pydist_resource_paths = ["jupyter_server/static/style/bootstrap.min.css", "jupyter_server/static/style/bootstrap-theme.min.css"]

[tool.tbump.version]
current = "2.1.0.dev0"
current = "2.0.0rc0"
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 0fc4fcc

Please sign in to comment.