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