From 214a61a20532654eb491debf7381b1fbba2b1163 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Sun, 6 Sep 2026 13:08:18 +0000 Subject: [PATCH] Release the CLI as 0.2.0 The revenue fix, the delivery fix and `crawlproof ad ` landed in #243, but the published version did not move with them: `crawlproof update` fetches @latest, so until this ships every box keeps reinstalling 0.1.0 and the dashboard keeps reporting a lifetime total as a monthly rate. This was pushed to #243's branch before the merge and the squash did not carry it, the same way #240 dropped bin/crawlproof.mjs. Landing it on its own. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01HvWJ4336pxTFRdRbvsTQeD --- packages/cli/package.json | 2 +- packages/cli/src/cli.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 6c33557..3ece7e1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@profullstack/crawlproof", - "version": "0.1.0", + "version": "0.2.0", "description": "What the fleet costs and what it returns: a live terminal dashboard over CrawlProof traffic, ad delivery and CoinPay banking.", "license": "MIT", "type": "module", diff --git a/packages/cli/src/cli.ts b/packages/cli/src/cli.ts index 4242127..35e55dd 100644 --- a/packages/cli/src/cli.ts +++ b/packages/cli/src/cli.ts @@ -15,7 +15,7 @@ import { collectDashboard } from "../../../lib/dashboard/collect"; import { renderStats } from "../../../lib/dashboard/stats-text"; import { FINANCE_DAYS, runDashboard } from "../../../cli/dashboard"; -export const VERSION = "0.1.0"; +export const VERSION = "0.2.0"; type Args = { command: string;