From 30e72f00d7ca405a5fbdb8f9b3d46bf580e2e4ce Mon Sep 17 00:00:00 2001 From: antejavor Date: Fri, 24 Jul 2026 10:21:18 +0200 Subject: [PATCH] Bump versions for release: memgraph-toolbox, mcp-memgraph, lightrag-memgraph, unstructured2graph memgraph-toolbox 0.1.11 -> 0.2.0: the #211 tool-module consolidation (individual tool files merged into schema.py, several tool classes removed) was never accompanied by a version bump, so it never shipped. mcp-memgraph's server already imports the new schema.py classes, so without this bump a fresh install would pull the stale 0.1.11 from PyPI and fail to import. mcp-memgraph 0.2.0 -> 0.3.0: covers the toolbox integration rewrite (#211) and readOnlyHint tool annotations (#213). Bumps its memgraph-toolbox floor to >=0.2.0 to match. lightrag-memgraph 0.2.0 -> 0.3.0: the 0.2.0 bump was never published (PyPI is still on 0.1.6), so this release also picks up everything since then: round-trip fixes, GC-lag logging, storage backend dedup, lightrag-hku version guard, zero-config default restore, and defaulting embedding_func to Memgraph's local sentence-transformer. unstructured2graph 0.2.0 -> 0.3.0: same situation, 0.2.0 was never published (PyPI is still on 0.1.5). Bundles create_property_index rename, workspace derivation, idempotent chunk ingestion, optional lightrag_wrapper, and vector index parameterization. Bumps its lightrag-memgraph floor to >=0.3.0 since it now imports DEFAULT_EMBEDDING_DIM, which only exists as of this release. --- integrations/lightrag-memgraph/pyproject.toml | 2 +- integrations/mcp-memgraph/pyproject.toml | 4 ++-- memgraph-toolbox/pyproject.toml | 2 +- memgraph-toolbox/uv.lock | 2 +- unstructured2graph/pyproject.toml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/integrations/lightrag-memgraph/pyproject.toml b/integrations/lightrag-memgraph/pyproject.toml index fc089ac..64877b7 100644 --- a/integrations/lightrag-memgraph/pyproject.toml +++ b/integrations/lightrag-memgraph/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lightrag-memgraph" -version = "0.2.0" +version = "0.3.0" description = "LightRAG integration with Memgraph" readme = "README.md" requires-python = ">=3.10" diff --git a/integrations/mcp-memgraph/pyproject.toml b/integrations/mcp-memgraph/pyproject.toml index d007149..df19d26 100644 --- a/integrations/mcp-memgraph/pyproject.toml +++ b/integrations/mcp-memgraph/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mcp-memgraph" -version = "0.2.0" +version = "0.3.0" description = "MCP integration and utilities for Memgraph MCP server" readme = "README.md" requires-python = ">=3.10" @@ -24,7 +24,7 @@ dependencies = [ "httpx>=0.28.1", "mcp[cli]>=1.23.0", "neo4j>=5.28.1", - "memgraph-toolbox>=0.1.11", + "memgraph-toolbox>=0.2.0", "fastmcp>=3.2.0", "pyjwt[crypto]>=2.10.1", "uvicorn>=0.48", diff --git a/memgraph-toolbox/pyproject.toml b/memgraph-toolbox/pyproject.toml index 3ca1e8d..57f237d 100644 --- a/memgraph-toolbox/pyproject.toml +++ b/memgraph-toolbox/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "memgraph-toolbox" -version = "0.1.11" +version = "0.2.0" description = "Memgraph toolbox library for Memgraph AI tools and utilities" readme = "README.md" authors = [ diff --git a/memgraph-toolbox/uv.lock b/memgraph-toolbox/uv.lock index 790bfa1..471ea77 100644 --- a/memgraph-toolbox/uv.lock +++ b/memgraph-toolbox/uv.lock @@ -1220,7 +1220,7 @@ wheels = [ [[package]] name = "memgraph-toolbox" -version = "0.1.11" +version = "0.2.0" source = { editable = "." } dependencies = [ { name = "neo4j" }, diff --git a/unstructured2graph/pyproject.toml b/unstructured2graph/pyproject.toml index 292e3ee..bd353e5 100644 --- a/unstructured2graph/pyproject.toml +++ b/unstructured2graph/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "unstructured2graph" -version = "0.2.0" +version = "0.3.0" description = "Convert unstructured documents into knowledge graphs" readme = "README.md" requires-python = ">=3.10" @@ -23,7 +23,7 @@ classifiers = [ dependencies = [ "unstructured>=0.18.18", - "lightrag-memgraph>=0.2.0", + "lightrag-memgraph>=0.3.0", "memgraph-toolbox>=0.1.11", ] [project.optional-dependencies]