diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f6a9e15..96f1cd9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.2" + ".": "1.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e17249b..008bcbe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.3.0](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.2...v1.3.0) (2026-07-14) + + +### Features + +* element x onboarding ([b9b3944](https://github.com/pvarki/python-matrix-rmapi/commit/b9b39445fbf026e472ef99fb9b6c3264466c7518)) +* use matrix authentication service ([446fdfb](https://github.com/pvarki/python-matrix-rmapi/commit/446fdfbce44d55e0824ce429709fd521a828a422)) + + +### Bug Fixes + +* devspace ([e9ae8fb](https://github.com/pvarki/python-matrix-rmapi/commit/e9ae8fb6e9dc2530567c19fdd9d5ee265fc0aa17)) +* implement proper healtcheck ([191b342](https://github.com/pvarki/python-matrix-rmapi/commit/191b3429031b05be17a8ced59a0ce5d1a1f461c0)) +* naming + pylint ([65ef839](https://github.com/pvarki/python-matrix-rmapi/commit/65ef839b8765f62a4fb580eddf8d717c2dfb6317)) +* remove kc registration ([77ef01d](https://github.com/pvarki/python-matrix-rmapi/commit/77ef01da8431f98d4f2668d6a090883b7d612e93)) + ## [1.2.2](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.1...v1.2.2) (2026-07-02) diff --git a/pyproject.toml b/pyproject.toml index ae48549..18fede9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.2.2" +version = "1.3.0" 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 e8a1073..a023b19 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.2.2" # x-release-please-version +__version__ = "1.3.0" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index 7534a7a..ebe4bc4 100644 --- a/tests/test_matrixrmapi.py +++ b/tests/test_matrixrmapi.py @@ -11,7 +11,7 @@ def test_version() -> None: """Make sure version matches expected""" - assert __version__ == "1.2.2" # x-release-please-version + assert __version__ == "1.3.0" # x-release-please-version def test_healthcheck_not_initialised(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index 71d2325..0b818c6 100644 --- a/uv.lock +++ b/uv.lock @@ -935,7 +935,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.2.2" +version = "1.3.0" source = { editable = "." } dependencies = [ { name = "fastapi" },