diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9049e2f..0bb4db2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.3.1" + ".": "1.3.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aa52c5..6f1c909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.3.2](https://github.com/pvarki/python-matrix-rmapi/compare/v1.3.1...v1.3.2) (2026-08-12) + + +### Other Changes + +* allow rebuildinging image ([4a6f0a5](https://github.com/pvarki/python-matrix-rmapi/commit/4a6f0a54ac1e3eb727a9bacfa4387e9fdf09cf46)) + ## [1.3.1](https://github.com/pvarki/python-matrix-rmapi/compare/v1.3.0...v1.3.1) (2026-07-30) diff --git a/pyproject.toml b/pyproject.toml index ceb083b..da76e86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.3.1" +version = "1.3.2" 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 0969916..a30799d 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.3.1" # x-release-please-version +__version__ = "1.3.2" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index 4c762b3..deb4f70 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.1" # x-release-please-version + assert __version__ == "1.3.2" # x-release-please-version def test_healthcheck_not_initialised(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index 090f807..84a7329 100644 --- a/uv.lock +++ b/uv.lock @@ -935,7 +935,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.3.1" +version = "1.3.2" source = { editable = "." } dependencies = [ { name = "fastapi" },