diff --git a/README.md b/README.md index ee9f713..7332b07 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # GovOPlaN Booking + +**Repository type:** module (domain). + + `govoplan-booking` is the GovOPlaN platform module seed for booking procedures for rooms, resources, counters, equipment, appointment types, public slots, internal reservations, waiting lists, cancellations, attendance, and no-shows. This repository is initialized as a discoverable module seed. It exposes a module manifest, initial permissions, role templates, documentation metadata, Gitea workflow templates, and a focused manifest test. It intentionally does not yet add HTTP routes, database models, migrations, or WebUI navigation. @@ -61,5 +65,5 @@ From the core checkout, labels can be synced once a local `GITEA_TOKEN` is avail ```bash cd /mnt/DATA/git/govoplan-core -./scripts/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-booking --apply +/mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-booking --apply ``` diff --git a/package.json b/package.json index 28fd189..b3651fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/booking", - "version": "0.1.7", + "version": "0.1.8", "private": true, "description": "GovOPlaN Booking platform module seed.", "type": "module", diff --git a/pyproject.toml b/pyproject.toml index 4298f87..d0623c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-booking" -version = "0.1.7" +version = "0.1.8" description = "GovOPlaN Booking platform module seed." readme = "README.md" requires-python = ">=3.12" license = { file = "LICENSE" } authors = [{ name = "GovOPlaN" }] dependencies = [ - "govoplan-core>=0.1.7", - "govoplan-access>=0.1.7", + "govoplan-core>=0.1.8", + "govoplan-access>=0.1.8", ] [tool.setuptools.packages.find] diff --git a/src/govoplan_booking/backend/manifest.py b/src/govoplan_booking/backend/manifest.py index 2405fbe..412be56 100644 --- a/src/govoplan_booking/backend/manifest.py +++ b/src/govoplan_booking/backend/manifest.py @@ -5,7 +5,7 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo MODULE_ID = "booking" MODULE_NAME = "Booking" -MODULE_VERSION = "0.1.7" +MODULE_VERSION = "0.1.8" READ_SCOPE = "booking:workspace:read" WRITE_SCOPE = "booking:workspace:write" ADMIN_SCOPE = "booking:workspace:admin"