From 4b38130485bf800f6727f5cac32c866bf65a2019 Mon Sep 17 00:00:00 2001 From: Morten Punnerud-Engelstad Date: Wed, 12 Aug 2026 18:13:13 +0200 Subject: [PATCH] Release 0.8.1: the graph is load-bearing, and the README says so The positioning change alone: the graph writes the answer (54.9% to 91.2%), steers exploration, gates the answer type, hands arithmetic to mpeqs, and accumulates per-session knowledge -- every claim a pinned, CI-checked measurement. Stated boundary: not a document/RAG knowledge-graph builder. --- pyproject.toml | 2 +- src/mpe_lkg/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1e82ee9..20ba556 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mpe-lkg" -version = "0.8.0" +version = "0.8.1" description = "Local Knowledge Graph: a local LLM reasons step by step, and the graph writes, steers and checks the answer." readme = "README.md" requires-python = ">=3.10" diff --git a/src/mpe_lkg/__init__.py b/src/mpe_lkg/__init__.py index 3793d93..fc4325f 100644 --- a/src/mpe_lkg/__init__.py +++ b/src/mpe_lkg/__init__.py @@ -11,7 +11,7 @@ from __future__ import annotations -__version__ = "0.8.0" +__version__ = "0.8.1" __all__ = ["__version__", "create_app", "main", "health"]