Skip to content

Commit

Permalink
Bump version: 0.6.0-dev.4 → 0.6.0-dev.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bumpversion[bot] committed Oct 7, 2024
1 parent 157f726 commit 73fc957
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_slug": "miranda",
"project_short_description": "Python utilities for climate data collection, conversion, and management.",
"pypi_username": "Zeitsperre",
"version": "0.6.0-dev.4",
"version": "0.6.0-dev.5",
"use_pytest": "y",
"use_black": "y",
"use_conda": "y",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.6.0-dev.4"
current_version = "0.6.0-dev.5"
commit = true
commit_args = "--no-verify"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion src/miranda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

__author__ = """Trevor James Smith"""
__email__ = "[email protected]"
__version__ = "0.6.0-dev.4"
__version__ = "0.6.0-dev.5"


from . import (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_miranda.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ def test_package_metadata():
contents = f.read()
assert """Trevor James Smith""" in contents
assert '__email__ = "[email protected]"' in contents
assert '__version__ = "0.6.0-dev.4"' in contents
assert '__version__ = "0.6.0-dev.5"' in contents

0 comments on commit 73fc957

Please sign in to comment.