diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index b1fca7ff2d..1a36f403cb 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, 15, 1, "", "") +version_info = (1, 15, 2, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index 3afc738c69..bdd6c47c05 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ timeout = 300 skip = ["check-links"] [tool.tbump.version] -current = "1.15.1" +current = "1.15.2" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?