From d2ba38c1393f7746cea263326d9f447a2849cad5 Mon Sep 17 00:00:00 2001 From: Zach Sailer Date: Tue, 5 Apr 2022 15:54:03 -0700 Subject: [PATCH] Bump to 0.0.2.dev0 --- jupyter_server_synchronizer/_version.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyter_server_synchronizer/_version.py b/jupyter_server_synchronizer/_version.py index f59f520..344377a 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, 1, "", "") +version_info = (0, 0, 2, ".dev", "0") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index aa9e4a0..7fcfe14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ testpaths = [ skip = ["check-links"] [tool.tbump.version] -current = "0.0.1" +current = "0.0.2.dev0" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?