From 55447bd05cc4bd12c592f71fcf381c425b78ac15 Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Wed, 22 Jul 2026 03:42:46 +0200 Subject: [PATCH] chore(scheduling): bump version to 0.1.11 --- pyproject.toml | 6 +++--- src/govoplan_scheduling/__init__.py | 2 +- src/govoplan_scheduling/backend/manifest.py | 12 ++++++------ tests/test_manifest.py | 2 +- webui/package.json | 4 ++-- webui/src/module.ts | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0c18923..e9b7cc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-scheduling" -version = "0.1.10" +version = "0.1.11" description = "GovOPlaN meeting scheduling and Terminfindung module seed." readme = "README.md" requires-python = ">=3.12" license = { file = "LICENSE" } authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.10", - "govoplan-poll>=0.1.10", + "govoplan-core>=0.1.11", + "govoplan-poll>=0.1.11", ] [tool.setuptools.packages.find] diff --git a/src/govoplan_scheduling/__init__.py b/src/govoplan_scheduling/__init__.py index 4e1c167..353e041 100644 --- a/src/govoplan_scheduling/__init__.py +++ b/src/govoplan_scheduling/__init__.py @@ -2,4 +2,4 @@ __all__ = ["__version__"] -__version__ = "0.1.10" +__version__ = "0.1.11" diff --git a/src/govoplan_scheduling/backend/manifest.py b/src/govoplan_scheduling/backend/manifest.py index 681a597..1e849dc 100644 --- a/src/govoplan_scheduling/backend/manifest.py +++ b/src/govoplan_scheduling/backend/manifest.py @@ -30,7 +30,7 @@ from govoplan_scheduling.backend.db import models as scheduling_models # noqa: MODULE_ID = "scheduling" MODULE_NAME = "Scheduling" -MODULE_VERSION = "0.1.10" +MODULE_VERSION = "0.1.11" READ_SCOPE = "scheduling:schedule:read" WRITE_SCOPE = "scheduling:schedule:write" ADMIN_SCOPE = "scheduling:schedule:admin" @@ -154,11 +154,11 @@ manifest = ModuleManifest( ModuleInterfaceProvider(name="scheduling.decision_handoff", version=MODULE_VERSION), ), requires_interfaces=( - ModuleInterfaceRequirement(name="poll.option_ordering", version_min="0.1.10", version_max_exclusive="0.2.0"), - ModuleInterfaceRequirement(name="poll.availability_matrix", version_min="0.1.10", version_max_exclusive="0.2.0"), - ModuleInterfaceRequirement(name="poll.response_collection", version_min="0.1.10", version_max_exclusive="0.2.0"), - ModuleInterfaceRequirement(name="poll.workflow_context", version_min="0.1.10", version_max_exclusive="0.2.0"), - ModuleInterfaceRequirement(name="poll.governed_participation", version_min="0.1.10", version_max_exclusive="0.2.0"), + ModuleInterfaceRequirement(name="poll.option_ordering", version_min="0.1.11", version_max_exclusive="0.2.0"), + ModuleInterfaceRequirement(name="poll.availability_matrix", version_min="0.1.11", version_max_exclusive="0.2.0"), + ModuleInterfaceRequirement(name="poll.response_collection", version_min="0.1.11", version_max_exclusive="0.2.0"), + ModuleInterfaceRequirement(name="poll.workflow_context", version_min="0.1.11", version_max_exclusive="0.2.0"), + ModuleInterfaceRequirement(name="poll.governed_participation", version_min="0.1.11", version_max_exclusive="0.2.0"), ModuleInterfaceRequirement(name="evaluation.feedback", version_min="0.1.8", version_max_exclusive="0.2.0", optional=True), ModuleInterfaceRequirement(name="notifications.dispatch", version_min="0.1.8", version_max_exclusive="0.2.0", optional=True), ModuleInterfaceRequirement(name=CAPABILITY_ACCESS_PEOPLE_SEARCH, version_min="0.1.0", version_max_exclusive="0.2.0", optional=True), diff --git a/tests/test_manifest.py b/tests/test_manifest.py index 83295ee..265932d 100644 --- a/tests/test_manifest.py +++ b/tests/test_manifest.py @@ -50,7 +50,7 @@ class SchedulingManifestTests(unittest.TestCase): "poll.workflow_context", "poll.governed_participation", ): - self.assertEqual("0.1.10", required_interfaces[interface_name].version_min) + self.assertEqual("0.1.11", required_interfaces[interface_name].version_min) if __name__ == "__main__": diff --git a/webui/package.json b/webui/package.json index 6832f71..6a42646 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/scheduling-webui", - "version": "0.1.10", + "version": "0.1.11", "private": true, "type": "module", "main": "src/index.ts", @@ -18,7 +18,7 @@ "test:ui-structure": "node scripts/test-scheduling-page-structure.mjs" }, "peerDependencies": { - "@govoplan/core-webui": "^0.1.10", + "@govoplan/core-webui": "^0.1.11", "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 30886be..d8f2c5b 100644 --- a/webui/src/module.ts +++ b/webui/src/module.ts @@ -11,7 +11,7 @@ const scheduleRead = ["scheduling:schedule:read"]; export const schedulingModule: PlatformWebModule = { id: "scheduling", label: "Scheduling", - version: "0.1.10", + version: "0.1.11", dependencies: ["poll"], optionalDependencies: ["access", "calendar", "mail", "notifications", "workflow", "appointments", "addresses"], translations: generatedTranslations,