Skip to content

Commit ff56539

Browse files
Publish 2.0.0b1
SHA256 hashes: jupyter_server-2.0.0b1-py3-none-any.whl: fcbc870145a8934dffdebc91431e9e0a2c39e7b805358c01cb7fe70b3c544d9d jupyter_server-2.0.0b1.tar.gz: 7a176399ab96f76cf68b5d602453d22bf1b42e1079ffd703e5639026a6244e7e
1 parent 43210a5 commit ff56539

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
# |version| and |release|, also used in various other places throughout the
109109
# built documents.
110110
#
111-
__version__ = "2.1.0.dev0"
111+
__version__ = "2.0.0b1"
112112
# The short X.Y version.
113113
version_parsed = parse_version(__version__)
114114
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 = (2, 1, 0, ".dev", "0")
5+
version_info = (2, 0, 0, "b", "1")
66
__version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:])

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

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

122122
[tool.tbump.version]
123-
current = "2.1.0.dev0"
123+
current = "2.0.0b1"
124124
regex = '''
125125
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
126126
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

0 commit comments

Comments
 (0)