Skip to content

Commit 59e865c

Browse files
committed
chore: update version to 0.21.6 for v0.21.6 release
Signed-off-by: phernandez <paul@basicmachines.co>
1 parent 96b6b21 commit 59e865c

8 files changed

Lines changed: 37 additions & 19 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,24 @@
66
},
77
"metadata": {
88
"description": "Official Basic Memory plugins from the canonical basic-memory repository",
9-
"version": "0.3.13"
9+
"version": "0.21.6"
1010
},
1111
"plugins": [
1212
{
1313
"name": "basic-memory",
1414
"source": "./plugins/claude-code",
15-
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph session briefings, pre-compaction checkpoints, and capture reflexes",
16-
"version": "0.3.13",
15+
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph \u2014 session briefings, pre-compaction checkpoints, and capture reflexes",
16+
"version": "0.21.6",
1717
"author": {
1818
"name": "Basic Machines"
1919
},
20-
"keywords": ["memory", "knowledge", "mcp", "specs", "context"]
20+
"keywords": [
21+
"memory",
22+
"knowledge",
23+
"mcp",
24+
"specs",
25+
"context"
26+
]
2127
}
2228
]
2329
}

integrations/hermes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from agent.memory_provider import MemoryProvider
3939
from tools.registry import tool_error
4040

41-
__version__ = "0.3.2"
41+
__version__ = "0.21.6"
4242

4343
logger = logging.getLogger("hermes.memory.basic-memory")
4444

integrations/hermes/plugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: basic-memory
2-
version: 0.3.2
2+
version: 0.21.6
33
description: "Basic Memory — persistent knowledge graph backed by the basic-memory MCP server"
44
pip_dependencies:
55
- mcp

integrations/openclaw/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "@basicmemory/openclaw-basic-memory",
3-
"version": "0.2.4",
3+
"version": "0.21.6",
44
"type": "module",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
7-
"description": "Basic Memory plugin for OpenClaw local-first knowledge graph for agent memory",
7+
"description": "Basic Memory plugin for OpenClaw \u2014 local-first knowledge graph for agent memory",
88
"license": "MIT",
99
"repository": {
1010
"type": "git",

plugins/claude-code/.claude-plugin/marketplace.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,24 @@
66
},
77
"metadata": {
88
"description": "Official plugins from Basic Machines for knowledge management and AI-assisted development",
9-
"version": "0.3.13"
9+
"version": "0.21.6"
1010
},
1111
"plugins": [
1212
{
1313
"name": "basic-memory",
1414
"source": "./",
15-
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph session briefings, pre-compaction checkpoints, and capture reflexes",
16-
"version": "0.3.13",
15+
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph \u2014 session briefings, pre-compaction checkpoints, and capture reflexes",
16+
"version": "0.21.6",
1717
"author": {
1818
"name": "Basic Machines"
1919
},
20-
"keywords": ["memory", "knowledge", "mcp", "specs", "context"]
20+
"keywords": [
21+
"memory",
22+
"knowledge",
23+
"mcp",
24+
"specs",
25+
"context"
26+
]
2127
}
2228
]
2329
}

plugins/claude-code/.claude-plugin/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "basic-memory",
3-
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph session briefings, pre-compaction checkpoints, and capture reflexes",
4-
"version": "0.3.13",
3+
"description": "The bridge between Claude's working memory and Basic Memory's durable knowledge graph \u2014 session briefings, pre-compaction checkpoints, and capture reflexes",
4+
"version": "0.21.6",
55
"author": {
66
"name": "Basic Machines"
77
},

server.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,22 @@
66
"url": "https://github.com/basicmachines-co/basic-memory.git",
77
"source": "github"
88
},
9-
"version": "0.21.5",
9+
"version": "0.21.6",
1010
"packages": [
1111
{
1212
"registryType": "pypi",
1313
"identifier": "basic-memory",
14-
"version": "0.21.5",
14+
"version": "0.21.6",
1515
"runtimeHint": "uvx",
1616
"runtimeArguments": [
17-
{"type": "positional", "value": "basic-memory"},
18-
{"type": "positional", "value": "mcp"}
17+
{
18+
"type": "positional",
19+
"value": "basic-memory"
20+
},
21+
{
22+
"type": "positional",
23+
"value": "mcp"
24+
}
1925
],
2026
"transport": {
2127
"type": "stdio"

src/basic_memory/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""basic-memory - Local-first knowledge management combining Zettelkasten with knowledge graphs"""
22

33
# Package version - updated by release automation
4-
__version__ = "0.21.5"
4+
__version__ = "0.21.6"
55

66
# API version for FastAPI - independent of package version
77
__api_version__ = "v0"

0 commit comments

Comments
 (0)