Skip to content

Commit 500e758

Browse files
committed
Bump to 2.0.0a1
1 parent 877da10 commit 500e758

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.0a1"
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, "a", "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.0a1"
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."
@@ -118,7 +118,7 @@ post-version-spec = "dev"
118118
pydist_resource_paths = ["jupyter_server/static/style/bootstrap.min.css", "jupyter_server/static/style/bootstrap-theme.min.css"]
119119

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

0 commit comments

Comments
 (0)