From 79781662e8e8192ef0ccde42231171d8779c60a6 Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Tue, 21 Jul 2026 20:48:22 +0200 Subject: [PATCH] chore(access): bump version to 0.1.10 --- package.json | 4 ++-- pyproject.toml | 4 ++-- src/govoplan_access/__init__.py | 2 +- src/govoplan_access/backend/manifest.py | 2 +- tests/test_optional_tenancy_contract.py | 2 +- webui/package.json | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index f156dde..f354b65 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/access-webui", - "version": "0.1.8", + "version": "0.1.10", "private": true, "type": "module", "main": "webui/src/index.ts", @@ -18,7 +18,7 @@ "LICENSE" ], "peerDependencies": { - "@govoplan/core-webui": "^0.1.9", + "@govoplan/core-webui": "^0.1.10", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/pyproject.toml b/pyproject.toml index 50fe2bd..ab137c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-access" -version = "0.1.8" +version = "0.1.10" description = "GovOPlaN access platform module with identity, auth, RBAC, and scope primitives." readme = "README.md" requires-python = ">=3.12" license = { file = "LICENSE" } authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.9", + "govoplan-core>=0.1.10", "redis>=5,<6", "SQLAlchemy>=2,<3", ] diff --git a/src/govoplan_access/__init__.py b/src/govoplan_access/__init__.py index 7b7f84e..bfcb032 100644 --- a/src/govoplan_access/__init__.py +++ b/src/govoplan_access/__init__.py @@ -1,3 +1,3 @@ """GovOPlaN access platform module.""" -__version__ = "0.1.8" +__version__ = "0.1.10" diff --git a/src/govoplan_access/backend/manifest.py b/src/govoplan_access/backend/manifest.py index ff55408..1025684 100644 --- a/src/govoplan_access/backend/manifest.py +++ b/src/govoplan_access/backend/manifest.py @@ -600,7 +600,7 @@ def _route_factory(context: ModuleContext): manifest = ModuleManifest( id="access", name="Access", - version="0.1.8", + version="0.1.10", optional_dependencies=("identity", "organizations", "tenancy", "idm"), permissions=ACCESS_PERMISSIONS, role_templates=ACCESS_ROLE_TEMPLATES, diff --git a/tests/test_optional_tenancy_contract.py b/tests/test_optional_tenancy_contract.py index 464143d..4112558 100644 --- a/tests/test_optional_tenancy_contract.py +++ b/tests/test_optional_tenancy_contract.py @@ -15,7 +15,7 @@ class OptionalTenancyContractTests(unittest.TestCase): dependencies = tuple(project["dependencies"]) - self.assertIn("govoplan-core>=0.1.9", dependencies) + self.assertIn("govoplan-core>=0.1.10", dependencies) self.assertNotIn("govoplan-tenancy>=0.1.8", dependencies) self.assertFalse(any(item.startswith("govoplan-tenancy") for item in dependencies)) diff --git a/webui/package.json b/webui/package.json index d971a9c..3901d0a 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/access-webui", - "version": "0.1.8", + "version": "0.1.10", "private": true, "type": "module", "main": "src/index.ts", @@ -13,7 +13,7 @@ } }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.9", + "@govoplan/core-webui": "^0.1.10", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0",