mcpill 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.4
4
+
5
+ - Fix: bump `mcpill-runtime` to `^0.1.2` — `0.1.0` dist imported `@ruco-ai/mcpster` (old scoped name), causing `ERR_MODULE_NOT_FOUND` on global install
6
+
3
7
  ## 1.2.3
4
8
 
5
9
  - `mcpill init` now scaffolds a `package.json` with `type: module` and `mcpill-runtime` as the only dependency; prints `Run: npm install` rather than auto-installing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcpill",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "type": "module",
5
5
  "description": "CLI for building, validating, and publishing MCP servers using the pill format.",
6
6
  "homepage": "https://mcpill.ruco.dev",
@@ -21,7 +21,7 @@
21
21
  "lint": "tsc --noEmit"
22
22
  },
23
23
  "dependencies": {
24
- "mcpill-runtime": "^0.1.0",
24
+ "mcpill-runtime": "^0.1.2",
25
25
  "mcpster": "^0.3.0",
26
26
  "commander": "^12"
27
27
  },