From 910163f345eb4de0c6b47eb8ce5d749a15f2bd13 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_grants/backend/manifest.py | 2 +- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index da72cf6..b4d9ae5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # GovOPlaN Grants + +**Repository type:** module (domain). + + `govoplan-grants` is the GovOPlaN platform module seed for grant and funding program workflows for applications, eligibility, awards, milestones, payout claims, reporting duties, and audits. 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. @@ -60,5 +64,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-grants --apply +/mnt/DATA/git/govoplan/tools/gitea/gitea-sync-labels.py --root /mnt/DATA/git/govoplan-grants --apply ``` diff --git a/package.json b/package.json index eac9677..0557516 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@govoplan/grants", - "version": "0.1.7", + "version": "0.1.8", "private": true, "description": "GovOPlaN Grants platform module seed.", "type": "module", diff --git a/pyproject.toml b/pyproject.toml index e4b9849..dc6326f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,15 +4,15 @@ build-backend = "setuptools.build_meta" [project] name = "govoplan-grants" -version = "0.1.7" +version = "0.1.8" description = "GovOPlaN Grants 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_grants/backend/manifest.py b/src/govoplan_grants/backend/manifest.py index 3c02614..c678c8d 100644 --- a/src/govoplan_grants/backend/manifest.py +++ b/src/govoplan_grants/backend/manifest.py @@ -5,7 +5,7 @@ from govoplan_core.core.modules import DocumentationLink, DocumentationTopic, Mo MODULE_ID = "grants" MODULE_NAME = "Grants" -MODULE_VERSION = "0.1.7" +MODULE_VERSION = "0.1.8" READ_SCOPE = "grants:workspace:read" WRITE_SCOPE = "grants:workspace:write" ADMIN_SCOPE = "grants:workspace:admin"