diff --git a/docs/source/conf.py b/docs/source/conf.py index 10d89e290e..b177e8e1a9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -107,7 +107,7 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -__version__ = "1.18.0.dev0" +__version__ = "1.18.0" # The short X.Y version. version_parsed = parse_version(__version__) version = f"{version_parsed.major}.{version_parsed.minor}" diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index 7399b1f127..62a4bc191c 100644 --- a/jupyter_server/_version.py +++ b/jupyter_server/_version.py @@ -2,5 +2,5 @@ store the current version info of the server. """ -version_info = (1, 18, 0, ".dev", "0") +version_info = (1, 18, 0, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index 3e7b61d777..c13bace8f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ skip = ["check-links"] post-version-spec = "dev" [tool.tbump.version] -current = "1.18.0.dev0" +current = "1.18.0" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?