From 67f442b77298fd5c95432baf8cab9623ea971cfd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 13:46:39 +0000 Subject: [PATCH] chore(main): release 1.2.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/matrixrmapi/__init__.py | 2 +- tests/test_matrixrmapi.py | 2 +- uv.lock | 2 +- 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c3f1463..41ea87d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.2.0" + ".": "1.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 561fddc..7bda9a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.2.1](https://github.com/pvarki/python-matrix-rmapi/compare/v1.2.0...v1.2.1) (2026-06-14) + + +### Bug Fixes + +* add the missing -local suffix to local build action (why is it not using the common one ??) ([e4d486e](https://github.com/pvarki/python-matrix-rmapi/commit/e4d486e5ab55eb514f5230e74705e2cc361fe6e9)) + ## [1.2.0](https://github.com/pvarki/python-matrix-rmapi/compare/v1.1.2...v1.2.0) (2026-06-14) diff --git a/pyproject.toml b/pyproject.toml index 25b0b72..23866b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.2.0" +version = "1.2.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 37df675..c0e124d 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.2.0" # x-release-please-version +__version__ = "1.2.1" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index f924f91..cdd3f5b 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.0" # x-release-please-version + assert __version__ == "1.2.1" # x-release-please-version def test_healthcheck(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index a66aac0..db9966e 100644 --- a/uv.lock +++ b/uv.lock @@ -953,7 +953,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.2.0" +version = "1.2.1" source = { editable = "." } dependencies = [ { name = "fastapi" },