diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 53b7bc9..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.2" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c234835..561fddc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [1.2.0](https://github.com/pvarki/python-matrix-rmapi/compare/v1.1.2...v1.2.0) (2026-06-14) + + +### Features + +* allow manual triggering of CI jobs ([b36a04f](https://github.com/pvarki/python-matrix-rmapi/commit/b36a04f3bf7237e67672e9ab62bbe8a18133890c)) + + +### Bug Fixes + +* **release-please:** do not include component in tag ([a17cd1e](https://github.com/pvarki/python-matrix-rmapi/commit/a17cd1e2416c09d49de3652625f849ac4cefe762)) + + +### Documentation + +* write changelogs for past versions ([cb90f68](https://github.com/pvarki/python-matrix-rmapi/commit/cb90f68cec7d38d5e49b0a2fcc02e89dc68f18d3)) + ## [1.1.2](https://github.com/pvarki/python-matrix-rmapi/releases/tag/v1.1.2) (2026-06-09) diff --git a/pyproject.toml b/pyproject.toml index 7a13b5c..25b0b72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "matrixrmapi" -version = "1.1.2" +version = "1.2.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 b1a4c19..37df675 100644 --- a/src/matrixrmapi/__init__.py +++ b/src/matrixrmapi/__init__.py @@ -1,3 +1,3 @@ """Matrix product RASENMAEHER integration API service""" -__version__ = "1.1.2" # x-release-please-version +__version__ = "1.2.0" # x-release-please-version diff --git a/tests/test_matrixrmapi.py b/tests/test_matrixrmapi.py index 15f342e..f924f91 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.1.2" # x-release-please-version + assert __version__ == "1.2.0" # x-release-please-version def test_healthcheck(mtlsclient: TestClient) -> None: diff --git a/uv.lock b/uv.lock index db7ff7a..a66aac0 100644 --- a/uv.lock +++ b/uv.lock @@ -953,7 +953,7 @@ wheels = [ [[package]] name = "matrixrmapi" -version = "1.1.2" +version = "1.2.0" source = { editable = "." } dependencies = [ { name = "fastapi" },