Skip to content

Commit 798b783

Browse files
committed
build: up version
1 parent 58fa3e3 commit 798b783

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.2] - 2025-12-04
9+
10+
### Fixed
11+
- **Critical Atomicity Fix:** The `commit()` method now implements a proper "Compensating Transaction" pattern.
12+
- Previously, if a vector sync hook (e.g., ChromaDB) failed, the SQL data remained committed, breaking the "ACID-like" promise.
13+
- Now, if a hook fails, the SQL transaction is automatically rolled back (or restored to the previous state).
14+
- **Singleton Logic:** Fixed a bug where updating a Singleton fact (e.g., "One User Profile") would return early and skip vector synchronization.
15+
16+
### Documentation 📚
17+
- **New Positioning:** Updated README to focus on "Transactional Memory" and "Predictability" rather than generic agent state.
18+
- **Demo:** Added a video demonstration (GIF) showing MemState preventing hallucinations vs Manual Sync.
19+
820
## [0.3.1] - 2025-12-04
921

1022
### Changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "memstate"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
description = "ACID-like memory for Agents. Atomically syncs Pydantic models & Vector DBs with Git-style versioning."
55
readme = "README.md"
66
requires-python = ">=3.10"
@@ -22,6 +22,9 @@ keywords = [
2222
"atomicity",
2323
"consistency"
2424
]
25+
packages = [
26+
{ include = "memstate" }
27+
]
2528
classifiers = [
2629
"Development Status :: 3 - Alpha",
2730
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)