Skip to content

Commit fa3b280

Browse files
committed
chore: release 1.0.9
1 parent 73bc430 commit fa3b280

8 files changed

Lines changed: 22 additions & 22 deletions

File tree

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aitoearn-openclaw-workspace",
33
"private": true,
4-
"version": "1.0.8",
4+
"version": "1.0.9",
55
"type": "module",
66
"workspaces": [
77
"packages/shared",

packages/installer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aitoearn/aitoearn-openclaw-cli",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"type": "module",
55
"main": "./dist/installer/src/cli.js",
66
"types": "./dist/installer/src/cli.d.ts",

packages/installer/src/openclaw-install.test.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ describe("installPluginWithOpenClaw", () => {
9090
rootDir: "/tmp/installer",
9191
manifest: {
9292
name: "@aitoearn/aitoearn-openclaw-cli",
93-
version: "1.0.8",
93+
version: "1.0.9",
9494
},
9595
openclawCliPath: "/tmp/node_modules/openclaw/openclaw.mjs",
96-
runtimeInstallSpec: "@aitoearn/openclaw-plugin@1.0.8",
96+
runtimeInstallSpec: "@aitoearn/openclaw-plugin@1.0.9",
9797
runtimeTrackSpec: "@aitoearn/openclaw-plugin",
9898
};
9999

@@ -104,8 +104,8 @@ describe("installPluginWithOpenClaw", () => {
104104
installs: {
105105
aitoearn: {
106106
source: "npm",
107-
spec: "@aitoearn/openclaw-plugin@1.0.8",
108-
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.8",
107+
spec: "@aitoearn/openclaw-plugin@1.0.9",
108+
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.9",
109109
},
110110
},
111111
},
@@ -133,7 +133,7 @@ describe("installPluginWithOpenClaw", () => {
133133
expect(runOpenClaw).toHaveBeenCalledWith(packageContext.openclawCliPath, [
134134
"plugins",
135135
"install",
136-
"@aitoearn/openclaw-plugin@1.0.8",
136+
"@aitoearn/openclaw-plugin@1.0.9",
137137
]);
138138
expect(writeConfig).toHaveBeenCalledWith(
139139
{
@@ -142,7 +142,7 @@ describe("installPluginWithOpenClaw", () => {
142142
aitoearn: {
143143
source: "npm",
144144
spec: "@aitoearn/openclaw-plugin",
145-
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.8",
145+
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.9",
146146
},
147147
},
148148
},
@@ -198,8 +198,8 @@ describe("installPluginWithOpenClaw", () => {
198198
installs: {
199199
aitoearn: {
200200
source: "npm",
201-
spec: "@aitoearn/openclaw-plugin@1.0.8",
202-
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.8",
201+
spec: "@aitoearn/openclaw-plugin@1.0.9",
202+
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.9",
203203
},
204204
},
205205
},
@@ -238,7 +238,7 @@ describe("installPluginWithOpenClaw", () => {
238238
expect(runOpenClaw).toHaveBeenCalledWith(packageContext.openclawCliPath, [
239239
"plugins",
240240
"install",
241-
"@aitoearn/openclaw-plugin@1.0.8",
241+
"@aitoearn/openclaw-plugin@1.0.9",
242242
]);
243243
expect(rm).toHaveBeenCalledWith(
244244
"/tmp/.openclaw/extensions/aitoearn.legacy-backup-4321-12345",
@@ -251,7 +251,7 @@ describe("installPluginWithOpenClaw", () => {
251251
aitoearn: {
252252
source: "npm",
253253
spec: "@aitoearn/openclaw-plugin",
254-
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.8",
254+
resolvedSpec: "@aitoearn/openclaw-plugin@1.0.9",
255255
},
256256
},
257257
},

packages/runtime/openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "aitoearn",
33
"name": "AiToEarn",
44
"description": "AiToEarn social media management tools",
5-
"version": "1.0.8",
5+
"version": "1.0.9",
66
"skills": [
77
"./skills"
88
],

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aitoearn/openclaw-plugin",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"type": "module",
55
"main": "./dist/runtime/index.js",
66
"types": "./dist/runtime/index.d.ts",

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aitoearn/openclaw-plugin-shared",
3-
"version": "1.0.8",
3+
"version": "1.0.9",
44
"private": true,
55
"type": "module",
66
"main": "./dist/src/index.js",

packages/shared/src/openclaw-config.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ describe("openclaw-config helpers", () => {
102102
installs: {
103103
aitoearn: {
104104
source: "npm",
105-
spec: "@aitoearn/openclaw-plugin@1.0.8",
105+
spec: "@aitoearn/openclaw-plugin@1.0.9",
106106
},
107107
},
108108
entries: {
@@ -123,7 +123,7 @@ describe("openclaw-config helpers", () => {
123123

124124
expect(getPluginInstallRecord(config)).toEqual({
125125
source: "npm",
126-
spec: "@aitoearn/openclaw-plugin@1.0.8",
126+
spec: "@aitoearn/openclaw-plugin@1.0.9",
127127
});
128128
expect(hasConfiguredPluginEntry(config)).toBe(true);
129129
});

0 commit comments

Comments
 (0)