diff --git a/pyaurorax/__init__.py b/pyaurorax/__init__.py index 6332a640..b0e1c725 100644 --- a/pyaurorax/__init__.py +++ b/pyaurorax/__init__.py @@ -32,7 +32,7 @@ """ # versioning info -__version__ = "1.11.0" +__version__ = "1.12.0" # documentation excludes __pdoc__ = {"cli": False, "pyaurorax": False} diff --git a/pyaurorax/cli/cli.py b/pyaurorax/cli/cli.py index ce97b82e..6331386d 100644 --- a/pyaurorax/cli/cli.py +++ b/pyaurorax/cli/cli.py @@ -52,7 +52,7 @@ def __test_connectivity(aurorax, quiet=False, return_json=False): @click.group(invoke_without_command=True) -@click.version_option(version="1.11.0") +@click.version_option(version="1.12.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") diff --git a/pyproject.toml b/pyproject.toml index 8e42b808..adec3a81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "pyaurorax" -version = "1.11.0" +version = "1.12.0" description = "Python library for interacting with the AuroraX platform" readme = "README.md" homepage = "https://github.com/aurorax-space/pyaurorax" diff --git a/tests/test_suite/test_version.py b/tests/test_suite/test_version.py index 4b3da86c..13335497 100644 --- a/tests/test_suite/test_version.py +++ b/tests/test_suite/test_version.py @@ -16,4 +16,4 @@ def test_version(): - assert __version__ == "1.11.0" + assert __version__ == "1.12.0"