Skip to content

Commit

Permalink
version bump to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dchaddock committed Dec 14, 2024
1 parent d2c0329 commit e38c002
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyaurorax/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""

# versioning info
__version__ = "1.6.0"
__version__ = "1.7.0"

# documentation excludes
__pdoc__ = {"cli": False, "pyaurorax": False}
Expand Down
2 changes: 1 addition & 1 deletion pyaurorax/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __test_connectivity(aurorax, quiet=False, return_json=False):


@click.group(invoke_without_command=True)
@click.version_option(version="1.6.0")
@click.version_option(version="1.7.0")
@click.option("--api-key", type=str, help="Specify an API key")
@click.option("--api-base-url", type=str, help="Set the AuroraX API base URL")
@click.option("--verbose", "-v", is_flag=True, help="Enable verbose output")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "pyaurorax"
version = "1.6.0"
version = "1.7.0"
description = "Python library for interacting with the AuroraX platform"
readme = "README.md"
homepage = "https://github.com/aurorax-space/pyaurorax"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_suite/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@


def test_version():
assert __version__ == "1.6.0"
assert __version__ == "1.7.0"

0 comments on commit e38c002

Please sign in to comment.