diff --git a/package.json b/package.json index ab0d46f..33d1639 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/policy-webui", - "version": "0.1.8", + "version": "0.1.9", "private": true, "type": "module", "main": "webui/src/index.ts", @@ -18,7 +18,7 @@ "LICENSE" ], "peerDependencies": { - "@govoplan/core-webui": "^0.1.8", + "@govoplan/core-webui": "^0.1.9", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/pyproject.toml b/pyproject.toml index e509c44..ca19aa3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-policy" -version = "0.1.8" +version = "0.1.9" description = "GovOPlaN policy platform module." readme = "README.md" requires-python = ">=3.12" authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.8", + "govoplan-core>=0.1.9", ] [tool.setuptools.packages.find] diff --git a/src/govoplan_policy/backend/manifest.py b/src/govoplan_policy/backend/manifest.py index 158d210..765f77b 100644 --- a/src/govoplan_policy/backend/manifest.py +++ b/src/govoplan_policy/backend/manifest.py @@ -22,7 +22,7 @@ def _privacy_retention_service(context: ModuleContext) -> object: manifest = ModuleManifest( id="policy", name="Policy", - version="0.1.8", + version="0.1.9", required_capabilities=(CAPABILITY_AUTH_PRINCIPAL_RESOLVER, CAPABILITY_AUTH_PERMISSION_EVALUATOR), route_factory=_route_factory, frontend=FrontendModule( diff --git a/webui/package.json b/webui/package.json index ac585ad..5ea31ff 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/policy-webui", - "version": "0.1.8", + "version": "0.1.9", "private": true, "type": "module", "main": "src/index.ts", @@ -13,7 +13,7 @@ } }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.8", + "@govoplan/core-webui": "^0.1.9", "lucide-react": "^1.23.0", "react": "^19.0.0", "react-dom": "^19.0.0", diff --git a/webui/src/module.ts b/webui/src/module.ts index 502884b..b642d95 100644 --- a/webui/src/module.ts +++ b/webui/src/module.ts @@ -59,7 +59,7 @@ const policyAdminSections: AdminSectionsUiCapability = { export const policyModule: PlatformWebModule = { id: "policy", label: "Policy", - version: "0.1.6", + version: "0.1.9", dependencies: ["access", "admin"], uiCapabilities: { "admin.sections": policyAdminSections