From 4161a642d8b979194dcd20da2619097243c3bb90 Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Tue, 4 Aug 2026 15:10:27 +0200 Subject: [PATCH] Release v0.1.15 --- pyproject.toml | 4 ++-- src/govoplan_identity_trust/backend/manifest.py | 2 +- webui/package.json | 13 +++++++++---- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f20aebc..e249f04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-identity-trust" -version = "0.1.14" +version = "0.1.15" description = "Public device-key, assurance, and key-epoch trust services for GovOPlaN." readme = "README.md" requires-python = ">=3.12" license = "AGPL-3.0-or-later" authors = [{ name = "GovOPlaN" }] -dependencies = ["govoplan-core>=0.1.14"] +dependencies = ["govoplan-core>=0.1.15"] [tool.setuptools.packages.find] where = ["src"] diff --git a/src/govoplan_identity_trust/backend/manifest.py b/src/govoplan_identity_trust/backend/manifest.py index cff51ae..e7676d7 100644 --- a/src/govoplan_identity_trust/backend/manifest.py +++ b/src/govoplan_identity_trust/backend/manifest.py @@ -31,7 +31,7 @@ from govoplan_identity_trust.backend.service import SqlIdentityTrustService MODULE_ID = "identity_trust" MODULE_NAME = "Identity Trust" -MODULE_VERSION = "0.1.14" +MODULE_VERSION = "0.1.15" DEVICE_READ_SCOPE = "identity_trust:device:read" DEVICE_WRITE_SCOPE = "identity_trust:device:write" KEY_ACCESS_SCOPE = "identity_trust:key_access:approve" diff --git a/webui/package.json b/webui/package.json index 1665bcc..b97d1fc 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,23 +1,28 @@ { "name": "@govoplan/identity-trust-webui", - "version": "0.1.14", + "version": "0.1.15", "private": true, "type": "module", "main": "src/index.ts", "module": "src/index.ts", "types": "src/index.ts", "exports": { - ".": { "types": "./src/index.ts", "import": "./src/index.ts" }, + ".": { + "types": "./src/index.ts", + "import": "./src/index.ts" + }, "./styles/identity-trust.css": "./src/styles/identity-trust.css" }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.14", + "@govoplan/core-webui": "^0.1.15", "lucide-react": "^1.23.0", "react": ">=19.2.7 <20", "react-dom": ">=19.2.7 <20" }, "peerDependenciesMeta": { - "@govoplan/core-webui": { "optional": true } + "@govoplan/core-webui": { + "optional": true + } }, "scripts": { "test:identity-trust-ui": "node tests/identity-trust-ui-structure.test.mjs"