From 245a571c601117dbc111a2bd4e53a7fb37703e73 Mon Sep 17 00:00:00 2001 From: Albrecht Degering Date: Sat, 11 Jul 2026 16:49:02 +0200 Subject: [PATCH] Release v0.1.8 --- README.md | 6 +++++- package.json | 2 +- pyproject.toml | 6 +++--- src/govoplan_issue_reporting/backend/manifest.py | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 73f3158..a5c8a32 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # GovOPlaN Issue Reporting + +**Repository type:** module (domain). + + `govoplan-issue-reporting` is the GovOPlaN platform module seed for public or internal problem reporting for broken infrastructure, damaged rooms, IT outages, safety issues, accessibility issues, triage, and routing. 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. @@ -59,5 +63,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-issue-reporting --apply +/mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-issue-reporting --apply ``` diff --git a/package.json b/package.json index 2108c3e..c741a80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/issue-reporting", - "version": "0.1.7", + "version": "0.1.8", "private": true, "description": "GovOPlaN Issue Reporting platform module seed.", "type": "module", diff --git a/pyproject.toml b/pyproject.toml index 3dd37e6..19eb4f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-issue-reporting" -version = "0.1.7" +version = "0.1.8" description = "GovOPlaN Issue Reporting 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_issue_reporting/backend/manifest.py b/src/govoplan_issue_reporting/backend/manifest.py index 19c03b4..743b4c6 100644 --- a/src/govoplan_issue_reporting/backend/manifest.py +++ b/src/govoplan_issue_reporting/backend/manifest.py @@ -5,7 +5,7 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo MODULE_ID = "issue-reporting" MODULE_NAME = "Issue Reporting" -MODULE_VERSION = "0.1.7" +MODULE_VERSION = "0.1.8" READ_SCOPE = "issue-reporting:workspace:read" WRITE_SCOPE = "issue-reporting:workspace:write" ADMIN_SCOPE = "issue-reporting:workspace:admin"