Skip to content

Commit 8ecb982

Browse files
committed
chore(agent): release 0.4.6 with participant fix
1 parent 101b798 commit 8ecb982

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

cli/templates/cat-maze/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"description": "Cooperative cat maze game template for MEW Protocol",
66
"dependencies": {
7-
"@mew-protocol/agent": "^0.4.5",
7+
"@mew-protocol/agent": "^0.4.6",
88
"@mew-protocol/bridge": "^0.4.1",
99
"@mew-protocol/client": "^0.4.1",
1010
"@mew-protocol/participant": "^0.4.1",

cli/templates/coder-agent/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"description": "MEW Protocol coder agent workspace with MCP filesystem tools",
66
"dependencies": {
7-
"@mew-protocol/agent": "^0.4.5",
7+
"@mew-protocol/agent": "^0.4.6",
88
"@mew-protocol/bridge": "^0.4.1",
99
"@mew-protocol/client": "^0.4.1",
1010
"@mew-protocol/participant": "^0.4.1",
@@ -17,4 +17,4 @@
1717
"engines": {
1818
"node": ">=18.0.0"
1919
}
20-
}
20+
}

docs/releases/RELEASE-PLAN-v0.4.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ npm view @mew-protocol/types version # Expected: 0.4.0
233233
npm view @mew-protocol/capability-matcher # Expected: 0.4.1
234234
npm view @mew-protocol/client version # Expected: 0.4.1
235235
npm view @mew-protocol/participant version # Expected: 0.4.2
236-
npm view @mew-protocol/agent version # Expected: 0.4.3
236+
npm view @mew-protocol/agent version # Expected: 0.4.6
237237
npm view @mew-protocol/bridge version # Expected: 0.4.1
238238
npm view @mew-protocol/cli version # Expected: 0.4.3
239239
```
@@ -263,7 +263,7 @@ mew space init --template coder-agent test-coder
263263
cd test-coder
264264
npm install
265265
# Verify no dependency resolution errors
266-
npm list @mew-protocol/agent # Should show 0.4.3
266+
npm list @mew-protocol/agent # Should show 0.4.6
267267
npm list @mew-protocol/bridge # Should show 0.4.1
268268

269269
# Test cat-maze template (NEW in v0.4!)
@@ -272,7 +272,7 @@ mew space init --template cat-maze test-maze
272272
cd test-maze
273273
npm install
274274
# Should install without errors
275-
npm list @mew-protocol/agent # Should show 0.4.3
275+
npm list @mew-protocol/agent # Should show 0.4.6
276276
```
277277

278278
### Phase 4: Feature Verification (v0.4 Specific)
@@ -407,7 +407,7 @@ bridge (0.4.0) → UPDATE TEMPLATES → cli (0.4.3)
407407
- Fixed `outDir: "./dist"``outDir: "dist"` in tsconfig.json
408408
- Updated clean script to remove `*.tsbuildinfo` files
409409
- Removed problematic project references temporarily
410-
- Published `@mew-protocol/[email protected]` with working binary
410+
- Published `@mew-protocol/[email protected]` with working binary, then republished `0.4.6` to depend on participant `0.4.2`
411411
- **Future Prevention**:
412412
- Add post-publish verification step to test binary execution
413413
- Include `.tsbuildinfo` cleanup in all package clean scripts
@@ -510,7 +510,7 @@ grep -r "@mew-protocol" sdk/typescript-sdk/*/package.json bridge/package.json
510510
- `@mew-protocol/[email protected]`
511511
- `@mew-protocol/[email protected]`
512512
- `@mew-protocol/[email protected]`
513-
- `@mew-protocol/[email protected].5` ⚠️ (Fixed build issues)
513+
- `@mew-protocol/[email protected].6` ⚠️ (Fixed build issues, updated participant dependency)
514514
- `@mew-protocol/[email protected]`
515515
- `@mew-protocol/[email protected]` ⚠️ (Fixed truncation + maze bugs)
516516

package-lock.json

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

sdk/typescript-sdk/agent/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@mew-protocol/agent",
3-
"version": "0.4.5",
3+
"version": "0.4.6",
44
"description": "TypeScript agent for MEW Protocol",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"bin": {
8-
"mew-agent": "./dist/index.js"
8+
"mew-agent": "dist/index.js"
99
},
1010
"scripts": {
1111
"build": "tsc",
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"@mew-protocol/client": "^0.4.0",
23-
"@mew-protocol/participant": "^0.4.0",
23+
"@mew-protocol/participant": "^0.4.2",
2424
"@mew-protocol/types": "^0.4.0",
2525
"@types/uuid": "^9.0.8",
2626
"js-yaml": "^4.1.0",
@@ -49,7 +49,7 @@
4949
],
5050
"repository": {
5151
"type": "git",
52-
"url": "https://github.com/rjcorwin/mew-protocol.git",
52+
"url": "git+https://github.com/rjcorwin/mew-protocol.git",
5353
"directory": "sdk/typescript-sdk/agent"
5454
},
5555
"homepage": "https://github.com/rjcorwin/mew-protocol#readme",

0 commit comments

Comments
 (0)