Skip to content

Commit

Permalink
Bump to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Mar 19, 2024
1 parent 1d1d8d7 commit cc3c0f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion batchspawner/_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__ = "1.3.0.dev"
__version__ = "1.3.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("."))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ omit = [
github_url = "https://github.com/jupyterhub/batchspawner"

[tool.tbump.version]
current = "1.3.0.dev"
current = "1.3.0"
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 @@ -9,7 +9,7 @@
"console_scripts": ["batchspawner-singleuser=batchspawner.singleuser:main"],
},
packages=["batchspawner"],
version="1.3.0.dev",
version="1.3.0",
description="""Batchspawner: A spawner for Jupyterhub to spawn notebooks using batch resource managers.""",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit cc3c0f5

Please sign in to comment.