Skip to content

Commit

Permalink
Bump to 16.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Jul 5, 2023
1 parent b8af9b3 commit ec967e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion oauthenticator/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# __version__ should be updated using tbump, based on configuration in
# pyproject.toml, according to instructions in RELEASE.md.
#
__version__ = "16.0.1.dev"
__version__ = "16.0.1"

# 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("."))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ omit = [
github_url = "https://github.com/jupyterhub/oauthenticator"

[tool.tbump.version]
current = "16.0.1.dev"
current = "16.0.1"
regex = '''
(?P<major>\d+)
\.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def run(self):
setup_args = dict(
name='oauthenticator',
packages=find_packages(),
version="16.0.1.dev",
version="16.0.1",
description="OAuthenticator: Authenticate JupyterHub users with common OAuth providers",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit ec967e7

Please sign in to comment.