Skip to content

Commit

Permalink
Bump to 1.24.0.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 12, 2023
1 parent a4f6104 commit 05758da
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.23.5"
__version__ = "1.24.0.dev0"
# 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, 23, 5, "", "")
version_info = (1, 24, 0, ".dev", "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 @@ -35,7 +35,7 @@ skip = ["check-links"]
post-version-spec = "dev"

[tool.tbump.version]
current = "1.23.5"
current = "1.24.0.dev0"
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 05758da

Please sign in to comment.