Skip to content

Commit 8877fdb

Browse files
Bump to 2.1.0.dev0
1 parent 0fc4fcc commit 8877fdb

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.0.0rc0"
111+
__version__ = "2.1.0.dev0"
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, 0, 0, "rc", "0")
5+
version_info = (2, 1, 0, ".dev", "0")
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.0.0rc0"
7+
version = "2.1.0.dev0"
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.0.0rc0"
123+
current = "2.1.0.dev0"
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)