diff --git a/pyproject.toml b/pyproject.toml index add246d..10fc05d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "mpe-lkg" -version = "0.7.1" +version = "0.8.0" description = "Local Knowledge Graph: a local LLM reasons step by step, and the steps become a graph." readme = "README.md" requires-python = ">=3.10" diff --git a/src/mpe_lkg/__init__.py b/src/mpe_lkg/__init__.py index 10c71c7..3793d93 100644 --- a/src/mpe_lkg/__init__.py +++ b/src/mpe_lkg/__init__.py @@ -11,7 +11,7 @@ from __future__ import annotations -__version__ = "0.7.1" +__version__ = "0.8.0" __all__ = ["__version__", "create_app", "main", "health"]