diff --git a/pyproject.toml b/pyproject.toml index 96a8e8c..0c18923 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-scheduling" -version = "0.1.9" +version = "0.1.10" 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.9", - "govoplan-poll>=0.1.9", + "govoplan-core>=0.1.10", + "govoplan-poll>=0.1.10", ] [tool.setuptools.packages.find] diff --git a/src/govoplan_scheduling/__init__.py b/src/govoplan_scheduling/__init__.py index e547c61..4e1c167 100644 --- a/src/govoplan_scheduling/__init__.py +++ b/src/govoplan_scheduling/__init__.py @@ -2,4 +2,4 @@ __all__ = ["__version__"] -__version__ = "0.1.9" +__version__ = "0.1.10" diff --git a/webui/package.json b/webui/package.json index ad60a64..6832f71 100644 --- a/webui/package.json +++ b/webui/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/scheduling-webui", - "version": "0.1.9", + "version": "0.1.10", "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.9", + "@govoplan/core-webui": "^0.1.10", "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 fdd8afc..3cb0212 100644 --- a/webui/src/module.ts +++ b/webui/src/module.ts @@ -10,7 +10,7 @@ const scheduleRead = ["scheduling:schedule:read"]; export const schedulingModule: PlatformWebModule = { id: "scheduling", label: "Scheduling", - version: "1.0.0", + version: "0.1.10", dependencies: ["poll"], optionalDependencies: ["calendar", "mail", "notifications", "workflow", "appointments", "addresses"], translations: generatedTranslations,