diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index e6ea7f8c..de1105c3 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -9,7 +9,7 @@ "name": "engraphis-memory", "source": "./", "description": "Discipline for giving agents durable, scoped, explainable memory across sessions and repos with the Engraphis MCP tools.", - "version": "1.2.5" + "version": "1.3.0" } ] } diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 1a5b1e3c..3d2ec34a 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "engraphis-memory", - "version": "1.2.5", + "version": "1.3.0", "description": "Give agents durable, scoped, explainable memory across sessions and repos via the Engraphis MCP tools. Use when you learn something worth keeping, need prior context before acting, or ask why/how a fact changed. Covers remember/recall, why/timeline, forget/pin/correct, sessions, and code search.", "author": { "name": "The Engraphis Authors", diff --git a/.claude-plugin/skill-assets.sha256 b/.claude-plugin/skill-assets.sha256 index ac518cd5..71885aab 100644 --- a/.claude-plugin/skill-assets.sha256 +++ b/.claude-plugin/skill-assets.sha256 @@ -1,5 +1,5 @@ -0a7be8087c44507ba52e2050458b9daeacb52674af09b9640e2dc530d538f465 .claude-plugin/marketplace.json -05acadf3dccd6a8bfb6df508227316b8b8442b11e9ae927f9e312223c13e36d0 .claude-plugin/plugin.json +24cc8bbcd2ba6055df75178c710542fb6e3e6428e63952ba51cc17d3d6d41a07 .claude-plugin/marketplace.json +6099aa7f5268a34bf1633c1f50c5e59f419b9dcc54ac5d553007fa40f28258ac .claude-plugin/plugin.json 018364f63e2181d83ba8d9532c50a41bd30e65eaa8358a721538c297dd063084 skills/engraphis-memory/SKILL.md 7ee71fb5ff9bd2b02f50b3ee8dc62f390a0e1bcd849a55739c4a376ac03d9784 skills/engraphis-memory/references/CONVENTIONS.md 8aafd2daba872be38ec8d42377e886d795d8941bf7c6a39795937ffc1d1f0d88 skills/engraphis-memory/references/SCOPING.md diff --git a/CHANGELOG.md b/CHANGELOG.md index aacb4553..05314395 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to Engraphis are documented here. Format loosely follows ## [Unreleased] +## [1.3.0] - 2026-08-01 + ### Added - The optional `hosted-eval` extra adds guarded hosted-Luna productivity evaluation with a diff --git a/engraphis/__init__.py b/engraphis/__init__.py index 82ff3abb..cb56f0e7 100644 --- a/engraphis/__init__.py +++ b/engraphis/__init__.py @@ -7,4 +7,4 @@ except PackageNotFoundError: # source tree without an installed distribution # Keep in step with [project] version in pyproject.toml — tests/test_packaging.py # pins the two together so a release cannot ship them out of sync. - __version__ = "1.2.5" + __version__ = "1.3.0" diff --git a/engraphis/commercial_manifest.json b/engraphis/commercial_manifest.json index 45df1773..39d24b12 100644 --- a/engraphis/commercial_manifest.json +++ b/engraphis/commercial_manifest.json @@ -1,6 +1,6 @@ { "schema": "engraphis-commercial/v2", - "version": "1.2.5", + "version": "1.3.0", "control_plane": "https://api.engraphis.com", "account_portal": "https://api.engraphis.com/account", "billing": { diff --git a/pyproject.toml b/pyproject.toml index 7e46c723..7e26ca57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "engraphis" -version = "1.2.5" +version = "1.3.0" description = "Local-first AI memory engine for agents — Ebbinghaus decay, interaction-aware recall, bi-temporal facts, hybrid retrieval, and an MCP server. You bring the LLM." readme = "README.md" license = "Apache-2.0"