diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 41ea87d..f6a9e15 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.1" + ".": "1.2.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bda9a8..e17249b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.2](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.1...v1.2.2) (2026-07-02) + + +### Bug Fixes + +* release-please changelog ([8129644](https://github.com/pvarki/python-matrix-rmapi/commit/81296442db6b8edfcb6da0f2645bff89354072c4)) + + +### Other Changes + +* pin version and use new name for helper scripts ([d5d15ee](https://github.com/pvarki/python-matrix-rmapi/commit/d5d15eeccbb76fbc74a4fc09ebe99d04c175e90d)) +* upgrade lockfile versions ([40f7f5c](https://github.com/pvarki/python-matrix-rmapi/commit/40f7f5c14b65e694846da329660ef6a32aead70a)) +* use new image for keycloak go script + add devspace ([0a9a926](https://github.com/pvarki/python-matrix-rmapi/commit/0a9a9262e636e1d02442935087560ceb9087b650)) + ## [1.2.1](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.0...v1.2.1) (2026-06-14) diff --git a/pyproject.toml b/pyproject.toml index 23866b5..ea718e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.2.1" +version = "1.2.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 c0e124d..e8a1073 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.2.1" # x-release-please-version +__version__ = "1.2.2" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index cdd3f5b..7bb410c 100644 --- a/tests/test_matrixrmapi.py +++ b/tests/test_matrixrmapi.py @@ -6,7 +6,7 @@ def test_version() -> None: """Make sure version matches expected""" - assert __version__ == "1.2.1" # x-release-please-version + assert __version__ == "1.2.2" # x-release-please-version def test_healthcheck(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index cb691a0..235a4e4 100644 --- a/uv.lock +++ b/uv.lock @@ -935,7 +935,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.2.1" +version = "1.2.2" source = { editable = "." } dependencies = [ { name = "fastapi" },