Skip to content

Commit

Permalink
version bump to 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dchaddock committed Nov 8, 2022
1 parent 1dcf281 commit bc467be
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 @@ -28,7 +28,7 @@
"""

# versioning info
__version__ = "0.12.0"
__version__ = "0.13.0"

# documentation excludes
__pdoc__ = {"cli": 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 @@ -37,7 +37,7 @@ def __test_connectivity(quiet=False, return_json=False):


@click.group(invoke_without_command=True)
@click.version_option(version="0.12.0")
@click.version_option(version="0.13.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
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyaurorax"
version = "0.12.0"
version = "0.13.0"
description = "Python library for interacting with the AuroraX API"
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 @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.12.0"
assert __version__ == "0.13.0"

0 comments on commit bc467be

Please sign in to comment.