diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 96f1cd9..9049e2f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.0" + ".": "1.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 008bcbe..8aa52c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.3.1](https://github.com/pvarki/python-matrix-rmapi/compare/v1.3.0...v1.3.1) (2026-07-30) + + +### Bug Fixes + +* allow configuring connection attempts ([c18cb81](https://github.com/pvarki/python-matrix-rmapi/commit/c18cb81f8cb2800f9286c7fea35531a44cd44ca1)) +* cli import ([62313cb](https://github.com/pvarki/python-matrix-rmapi/commit/62313cb8e2278f837785773d98086a90c0d6a01f)) +* healthcheck requires all workers ([8e20c8c](https://github.com/pvarki/python-matrix-rmapi/commit/8e20c8c7799ca2c21afe2b501d56aafdc4eb69b0)) + + +### Other Changes + +* update ruff version ([828d70c](https://github.com/pvarki/python-matrix-rmapi/commit/828d70c96985e0b4bed9250d7216202dcb9f822c)) + ## [1.3.0](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.2...v1.3.0) (2026-07-14) diff --git a/pyproject.toml b/pyproject.toml index 18fede9..ceb083b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.3.0" +version = "1.3.1" description = "Matrix service RASENMAEHER integration API service" authors = [{ name = "logaritmi", email = "logaritmi@FIXME.com" }] license = { text = "MIT" } diff --git a/src/matrixrmapi/__init__.py b/src/matrixrmapi/__init__.py index a023b19..0969916 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.3.0" # x-release-please-version +__version__ = "1.3.1" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index 4121992..4c762b3 100644 --- a/tests/test_matrixrmapi.py +++ b/tests/test_matrixrmapi.py @@ -14,7 +14,7 @@ def test_version() -> None: """Make sure version matches expected""" - assert __version__ == "1.3.0" # x-release-please-version + assert __version__ == "1.3.1" # x-release-please-version def test_healthcheck_not_initialised(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index 0b818c6..090f807 100644 --- a/uv.lock +++ b/uv.lock @@ -935,7 +935,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.3.0" +version = "1.3.1" source = { editable = "." } dependencies = [ { name = "fastapi" },