2 Commits
v0.1.7 ... main

Author SHA1 Message Date
45bffd3598 fix(manifest): normalize optional module ids 2026-07-20 20:01:50 +02:00
412e434515 Release v0.1.8 2026-07-11 16:49:01 +02:00
5 changed files with 13 additions and 9 deletions

View File

@@ -1,5 +1,9 @@
# GovOPlaN Consultation
<!-- govoplan-repository-type:start -->
**Repository type:** module (domain).
<!-- govoplan-repository-type:end -->
`govoplan-consultation` is the GovOPlaN platform module seed for public consultations, hearings, stakeholder feedback, formal comments, response matrices, and publication of results.
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.
@@ -28,7 +32,7 @@ Detailed boundary notes are in [docs/CONSULTATION_DOMAIN_BOUNDARY.md](docs/CONSU
Expected optional integrations:
- portal
- forms-runtime
- forms_runtime
- files
- records
- transparency
@@ -58,5 +62,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-consultation --apply
/mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-consultation --apply
```

View File

@@ -22,7 +22,7 @@ Public consultations, hearings, stakeholder feedback, formal comments, response
## Integration Candidates
- portal
- forms-runtime
- forms_runtime
- files
- records
- transparency

View File

@@ -1,6 +1,6 @@
{
"name": "@govoplan/consultation",
"version": "0.1.7",
"version": "0.1.8",
"private": true,
"description": "GovOPlaN Consultation platform module seed.",
"type": "module",

View File

@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
[project]
name = "govoplan-consultation"
version = "0.1.7"
version = "0.1.8"
description = "GovOPlaN Consultation 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]

View File

@@ -5,13 +5,13 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo
MODULE_ID = "consultation"
MODULE_NAME = "Consultation"
MODULE_VERSION = "0.1.7"
MODULE_VERSION = "0.1.8"
READ_SCOPE = "consultation:workspace:read"
WRITE_SCOPE = "consultation:workspace:write"
ADMIN_SCOPE = "consultation:workspace:admin"
OPTIONAL_DEPENDENCIES = (
"portal",
"forms-runtime",
"forms_runtime",
"files",
"records",
"transparency",