Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ All notable changes to lean-memory are documented here. The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2.3] - 2026-07-29

Compatibility + polish release: mcp SDK 2.0 support (dual-path, pin widened
from the v0.2.2 emergency `<2` cap), a 2.0-threading crash fix, MCP tool
metadata for directory scoring, and the update-integrity benchmark.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion console/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "lean-memory-console"
version = "0.2.2"
version = "0.2.3"
description = "Agent-first read-only verification console for lean-memory"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion console/src/lean_memory_console/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""lean-memory-console β€” agent-first read-only verification console."""

__version__ = "0.2.2"
__version__ = "0.2.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lean-memory"
version = "0.2.2"
version = "0.2.3"
description = "Embedded, local-first agent memory with hybrid retrieval and ADD-only supersession."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"url": "https://github.com/Wuesteon/lean-memory",
"source": "github"
},
"version": "0.2.2",
"version": "0.2.3",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "lean-memory",
"version": "0.2.2",
"version": "0.2.3",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
2 changes: 1 addition & 1 deletion src/lean_memory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from .types import Entity, Episode, Fact, RetrievedFact

__all__ = ["Memory", "Episode", "Entity", "Fact", "RetrievedFact"]
__version__ = "0.2.2" # keep in sync with pyproject.toml [project].version
__version__ = "0.2.3" # keep in sync with pyproject.toml [project].version