diff --git a/jupyter_server_synchronizer/_version.py b/jupyter_server_synchronizer/_version.py index 344377a..a4bdbe0 100644 --- a/jupyter_server_synchronizer/_version.py +++ b/jupyter_server_synchronizer/_version.py @@ -1,5 +1,5 @@ """ store the current version info of the synchronizer. """ -version_info = (0, 0, 2, ".dev", "0") +version_info = (0, 0, 2, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index 7fcfe14..90b97d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ testpaths = [ skip = ["check-links"] [tool.tbump.version] -current = "0.0.2.dev0" +current = "0.0.2" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?