Release v0.1.8

This commit is contained in:
2026-07-11 16:49:01 +02:00
parent 9e0329c689
commit 412e434515
4 changed files with 10 additions and 6 deletions

View File

@@ -1,5 +1,9 @@
# GovOPlaN Consultation # 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. `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. 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.
@@ -58,5 +62,5 @@ From the core checkout, labels can be synced once a local `GITEA_TOKEN` is avail
```bash ```bash
cd /mnt/DATA/git/govoplan-core 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

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

View File

@@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "govoplan-consultation" name = "govoplan-consultation"
version = "0.1.7" version = "0.1.8"
description = "GovOPlaN Consultation platform module seed." description = "GovOPlaN Consultation platform module seed."
readme = "README.md" readme = "README.md"
requires-python = ">=3.12" requires-python = ">=3.12"
license = { file = "LICENSE" } license = { file = "LICENSE" }
authors = [{ name = "GovOPlaN" }] authors = [{ name = "GovOPlaN" }]
dependencies = [ dependencies = [
"govoplan-core>=0.1.7", "govoplan-core>=0.1.8",
"govoplan-access>=0.1.7", "govoplan-access>=0.1.8",
] ]
[tool.setuptools.packages.find] [tool.setuptools.packages.find]

View File

@@ -5,7 +5,7 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo
MODULE_ID = "consultation" MODULE_ID = "consultation"
MODULE_NAME = "Consultation" MODULE_NAME = "Consultation"
MODULE_VERSION = "0.1.7" MODULE_VERSION = "0.1.8"
READ_SCOPE = "consultation:workspace:read" READ_SCOPE = "consultation:workspace:read"
WRITE_SCOPE = "consultation:workspace:write" WRITE_SCOPE = "consultation:workspace:write"
ADMIN_SCOPE = "consultation:workspace:admin" ADMIN_SCOPE = "consultation:workspace:admin"