Skip to content

Commit 4b3222d

Browse files
GenerQAQclaude
andcommitted
chore: release openclaw plugin v0.1.11
Bump version to 0.1.11, update @acontext/acontext dependency to ^0.1.18, and fix CI cache-dependency-path to use package.json (package-lock.json is gitignored). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8c8d8ce commit 4b3222d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/package-release-openclaw.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
node-version: '22'
2828
registry-url: 'https://registry.npmjs.org'
2929
cache: 'npm'
30-
cache-dependency-path: src/packages/openclaw/package-lock.json
30+
cache-dependency-path: src/packages/openclaw/package.json
3131

3232
- name: Update npm
3333
run: npm install -g npm@latest

src/packages/openclaw/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ export class AcontextBridge {
10341034
const acontextPlugin = {
10351035
id: "acontext",
10361036
name: "Acontext Skill Memory",
1037-
version: "0.1.10",
1037+
version: "0.1.11",
10381038
description:
10391039
"Acontext skill memory — auto-capture, auto-learn, sync skills to OpenClaw native directory",
10401040
kind: "memory" as const,

src/packages/openclaw/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@acontext/openclaw",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"type": "module",
55
"main": "./index.ts",
66
"description": "Acontext skill memory plugin for OpenClaw — auto-capture, auto-learn, native skill sync",
@@ -32,7 +32,7 @@
3232
"test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit"
3333
},
3434
"dependencies": {
35-
"@acontext/acontext": "^0.1.16",
35+
"@acontext/acontext": "^0.1.18",
3636
"@sinclair/typebox": "^0.34.48"
3737
},
3838
"devDependencies": {

src/packages/openclaw/tests/plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2044,7 +2044,7 @@ describe("plugin metadata", () => {
20442044
expect(plugin.id).toBe("acontext");
20452045
expect(plugin.kind).toBe("memory");
20462046
expect(plugin.name).toBe("Acontext Skill Memory");
2047-
expect(plugin.version).toBe("0.1.10");
2047+
expect(plugin.version).toBe("0.1.11");
20482048
});
20492049
});
20502050

0 commit comments

Comments
 (0)