Skip to content

Commit 18d4a19

Browse files
nrcrewsclaude
andcommitted
chore(cli): release 0.1.1 — relax dep pins for Homebrew compatibility
Homebrew's std_npm_args defaults to --min-release-age=7d as a supply-chain safety guard, refusing to install npm packages whose only matching version was published in the last 7 days. The 0.1.0 brew install failed because @hono/node-server@^2.0.1 (published 2026-04-30) and hono@^4.12.16 (published 2026-04-30) had no matching versions older than the cutoff. Loosen both caret pins so npm can resolve to a slightly older patch when brew's filter is in effect: - @hono/node-server: ^2.0.1 → ^2.0.0 - hono: ^4.12.16 → ^4.12.0 Plain `npm install` still resolves to the latest patch (2.0.1, 4.12.16), so dev/test behavior is unchanged. The full test suite still passes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0beb6c3 commit 18d4a19

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

cli/package-lock.json

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

cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@robotnetworks/asp",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Reference TypeScript implementation and CLI for the Agent Session Protocol (ASP). Spin up a local ASP network on your machine for protocol verification and agent-to-agent development.",
55
"license": "Apache-2.0",
66
"homepage": "https://github.com/RobotNetworks/asp/tree/main/cli",
@@ -52,9 +52,9 @@
5252
"prepack": "npm run build"
5353
},
5454
"dependencies": {
55-
"@hono/node-server": "^2.0.1",
55+
"@hono/node-server": "^2.0.0",
5656
"commander": "^13.0.0",
57-
"hono": "^4.12.16",
57+
"hono": "^4.12.0",
5858
"ws": "^8.20.0"
5959
},
6060
"devDependencies": {

0 commit comments

Comments
 (0)