Skip to content

Commit 8e7825b

Browse files
committed
chore: update version to 0.22.0 for v0.22.0 release
Signed-off-by: Drew Cain <groksrc@gmail.com>
1 parent dc29ba2 commit 8e7825b

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"metadata": {
88
"description": "Official Basic Memory plugins from the canonical basic-memory repository",
9-
"version": "0.21.6"
9+
"version": "0.22.0"
1010
},
1111
"plugins": [
1212
{
1313
"name": "basic-memory",
1414
"source": "./plugins/claude-code",
1515
"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",
16+
"version": "0.22.0",
1717
"author": {
1818
"name": "Basic Machines"
1919
},

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.21.6"
41+
__version__ = "0.22.0"
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.21.6
2+
version: 0.22.0
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@basicmemory/openclaw-basic-memory",
3-
"version": "0.21.6",
3+
"version": "0.22.0",
44
"type": "module",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
},
77
"metadata": {
88
"description": "Official plugins from Basic Machines for knowledge management and AI-assisted development",
9-
"version": "0.21.6"
9+
"version": "0.22.0"
1010
},
1111
"plugins": [
1212
{
1313
"name": "basic-memory",
1414
"source": "./",
1515
"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",
16+
"version": "0.22.0",
1717
"author": {
1818
"name": "Basic Machines"
1919
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "basic-memory",
33
"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",
4+
"version": "0.22.0",
55
"author": {
66
"name": "Basic Machines"
77
},

plugins/codex/.codex-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codex",
3-
"version": "0.21.6",
3+
"version": "0.22.0",
44
"description": "A Codex-native bridge to Basic Memory for durable engineering context, decisions, and resumable checkpoints.",
55
"author": {
66
"name": "Basic Machines",

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"url": "https://github.com/basicmachines-co/basic-memory.git",
77
"source": "github"
88
},
9-
"version": "0.21.6",
9+
"version": "0.22.0",
1010
"packages": [
1111
{
1212
"registryType": "pypi",
1313
"identifier": "basic-memory",
14-
"version": "0.21.6",
14+
"version": "0.22.0",
1515
"runtimeHint": "uvx",
1616
"runtimeArguments": [
1717
{

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.6"
4+
__version__ = "0.22.0"
55

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

0 commit comments

Comments
 (0)