Skip to content

Commit f533a6b

Browse files
committed
fix(cli): sync platform package versions to 0.10.4
The cli/package.json was bumped to 0.10.4 but the four npm/*/package.json platform stubs, optionalDependencies entries, and src/main.ts VERSION constant were left at 0.10.2 — so `npm publish` would ship inconsistent metadata and `index --version` would lie. Sync them all to 0.10.4.
1 parent f389877 commit f533a6b

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@indexnetwork/cli-darwin-arm64",
3-
"version": "0.10.2",
3+
"version": "0.10.4",
44
"description": "Platform-specific binary for @indexnetwork/cli (macOS arm64)",
55
"license": "MIT",
66
"os": [

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@indexnetwork/cli-darwin-x64",
3-
"version": "0.10.2",
3+
"version": "0.10.4",
44
"description": "Platform-specific binary for @indexnetwork/cli (macOS x64)",
55
"license": "MIT",
66
"os": [

npm/linux-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@indexnetwork/cli-linux-arm64",
3-
"version": "0.10.2",
3+
"version": "0.10.4",
44
"description": "Platform-specific binary for @indexnetwork/cli (Linux arm64)",
55
"license": "MIT",
66
"os": [

npm/linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@indexnetwork/cli-linux-x64",
3-
"version": "0.10.2",
3+
"version": "0.10.4",
44
"description": "Platform-specific binary for @indexnetwork/cli (Linux x64)",
55
"license": "MIT",
66
"os": [

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
"publish:all": "bun scripts/publish.ts"
2121
},
2222
"optionalDependencies": {
23-
"@indexnetwork/cli-linux-x64": "0.10.2",
24-
"@indexnetwork/cli-linux-arm64": "0.10.2",
25-
"@indexnetwork/cli-darwin-x64": "0.10.2",
26-
"@indexnetwork/cli-darwin-arm64": "0.10.2"
23+
"@indexnetwork/cli-linux-x64": "0.10.4",
24+
"@indexnetwork/cli-linux-arm64": "0.10.4",
25+
"@indexnetwork/cli-darwin-x64": "0.10.4",
26+
"@indexnetwork/cli-darwin-arm64": "0.10.4"
2727
},
2828
"devDependencies": {
2929
"@types/bun": "latest"

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import * as output from "./output";
2727

2828
const DEFAULT_API_URL = "https://protocol.index.network";
2929
const DEFAULT_APP_URL = "https://index.network";
30-
const VERSION = "0.10.2";
30+
const VERSION = "0.10.4";
3131

3232
/** Unicode box-drawing (rounded), same style as Honcho CLI. */
3333
const BOX = { tl: "\u256d", tr: "\u256e", bl: "\u2570", br: "\u256f", h: "\u2500", v: "\u2502" } as const;

0 commit comments

Comments
 (0)