Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
dchaddock committed Oct 29, 2024
1 parent 5fd6c26 commit 8440bd6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.3.2
--------------------

- bugfix to `scale_intensity()` function to handle scaling a single RGB image

Version 1.3.1
--------------------

Expand Down
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.3.1"
__version__ = "1.3.2"

# 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.3.1")
@click.version_option(version="1.3.2")
@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.3.1"
version = "1.3.2"
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.3.1"
assert __version__ == "1.3.2"

0 comments on commit 8440bd6

Please sign in to comment.