diff --git a/oauthenticator/_version.py b/oauthenticator/_version.py index ecc87124..449b2b50 100644 --- a/oauthenticator/_version.py +++ b/oauthenticator/_version.py @@ -1,7 +1,7 @@ # __version__ should be updated using tbump, based on configuration in # pyproject.toml, according to instructions in RELEASE.md. # -__version__ = "17.0.1.dev" +__version__ = "17.1.0" # version_info looks like (1, 2, 3, "dev") if __version__ is 1.2.3.dev version_info = tuple(int(p) if p.isdigit() else p for p in __version__.split(".")) diff --git a/pyproject.toml b/pyproject.toml index 0076a94f..08a27071 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ omit = [ github_url = "https://github.com/jupyterhub/oauthenticator" [tool.tbump.version] -current = "17.0.1.dev" +current = "17.1.0" regex = ''' (?P\d+) \. diff --git a/setup.py b/setup.py index 615695be..a293feaf 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def run(self): setup_args = dict( name='oauthenticator', packages=find_packages(), - version="17.0.1.dev", + version="17.1.0", description="OAuthenticator: Authenticate JupyterHub users with common OAuth providers", long_description=open("README.md").read(), long_description_content_type="text/markdown",