Skip to content

Commit 13d6c48

Browse files
Joe Robertsclaude
andcommitted
chore: bump version to 3.2.1
Patch bump for AUDIT §7.1 fix — AgentRuntime.snapshot/restore now dispatch to the cloud API in cloud mode. Documented method that previously no-ops silently for cloud users now works as the README describes. No new public API. No behavior change in local mode. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 1fe5953 commit 13d6c48

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

octopoda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
result = agent.recall("key")
1111
"""
1212

13-
__version__ = "3.2.0"
13+
__version__ = "3.2.1"
1414

1515
# Cloud SDK (the main developer-facing API)
1616
from synrix.cloud import Octopoda, Agent, OctopodaError, AuthError, RateLimitError

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "octopoda"
7-
version = "3.2.0"
7+
version = "3.2.1"
88
description = "Persistent Memory Kernel for AI Agents — crash recovery, shared memory, audit trail, real-time dashboard"
99
readme = "README.md"
1010
requires-python = ">=3.9"

synrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
logger = logging.getLogger(__name__)
1010

1111

12-
__version__ = "3.2.0"
12+
__version__ = "3.2.1"
1313

1414
import os
1515
import warnings

synrix_runtime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Synrix Agent Runtime — Persistent Memory Kernel for AI Agents
33
"""
44

5-
__version__ = "3.2.0"
5+
__version__ = "3.2.1"
66

77
from synrix_runtime.api.runtime import AgentRuntime
88

0 commit comments

Comments
 (0)