From df94fb99c481332aa99abb69057c3ffa0a9ddfe4 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Mon, 10 Aug 2026 13:44:17 +0000 Subject: [PATCH] chore: 0.3.0 All eleven workspace package.json files move together, the way 0.2.0 did. Two places write the version by hand rather than reading it from a package.json, and both are user-visible, so both move with it: the CLI banner in apps/cli/src/index.ts and the version reported by /api/health in apps/api/src/app.ts. A release where `reeleel --version` still says 0.2.0 is a release nobody can report a bug against. Co-Authored-By: Claude Opus 5 (1M context) --- apps/api/package.json | 2 +- apps/api/src/app.ts | 2 +- apps/cli/package.json | 2 +- apps/cli/src/index.ts | 2 +- apps/cv-worker/package.json | 2 +- apps/desktop/package.json | 2 +- apps/mobile/package.json | 2 +- apps/web/package.json | 2 +- package.json | 2 +- packages/client/package.json | 2 +- packages/core/package.json | 2 +- packages/db/package.json | 2 +- packages/sports/package.json | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/apps/api/package.json b/apps/api/package.json index 5486f00..c9c5d48 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/api", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "private": true, "description": "ReelEel HTTP API (Hono). The same @reeleel/core services the CLI and desktop app use.", diff --git a/apps/api/src/app.ts b/apps/api/src/app.ts index d9b958e..0dd0a8d 100644 --- a/apps/api/src/app.ts +++ b/apps/api/src/app.ts @@ -90,7 +90,7 @@ export const createApp = (options: CreateAppOptions = {}): Hono => { }), ); - app.get('/api/health', (c) => c.json({ ok: true, service: 'reeleel-api', version: '0.2.0' })); + app.get('/api/health', (c) => c.json({ ok: true, service: 'reeleel-api', version: '0.3.0' })); /** * Token login for native clients, which have no cookie jar. Returns the same diff --git a/apps/cli/package.json b/apps/cli/package.json index 2c60009..f439688 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/cli", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "description": "The ReelEel command line. Same services as the desktop app, scriptable.", "license": "MIT", diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index 7a917b2..3f0688c 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -15,7 +15,7 @@ import { registerProjectCommands } from './commands/project.js'; import { registerSystemCommands } from './commands/system.js'; import { configureOutput, fail } from './output.js'; -const VERSION = '0.2.0'; +const VERSION = '0.3.0'; export const buildProgram = (): Command => { const program = new Command(); diff --git a/apps/cv-worker/package.json b/apps/cv-worker/package.json index 3aa7da2..d1cc014 100644 --- a/apps/cv-worker/package.json +++ b/apps/cv-worker/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/cv-worker", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "private": true, "description": "ReelEel detection and tracking worker. Speaks the protocol in workers/cv/README.md.", diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 6b4a2ca..add84c6 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/desktop", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "private": true, "description": "ReelEel desktop shell (Windows, macOS, Linux). Wraps the same @reeleel/core services as the CLI and web app.", diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 55f5abc..b4ec850 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/mobile", - "version": "0.2.0", + "version": "0.3.0", "private": true, "description": "ReelEel for iOS and Android — native React Native screens over the ReelEel API, built with Expo.", "main": "index.js", diff --git a/apps/web/package.json b/apps/web/package.json index afe0206..4890dda 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/web", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "private": true, "description": "ReelEel web app — Hono JSX server-rendered pages with client-side islands, backed by the ReelEel API.", diff --git a/package.json b/package.json index 3bccd50..b1d2d3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reeleel", - "version": "0.2.0", + "version": "0.3.0", "private": true, "type": "module", "description": "Local-first, FOSS youth-sports video intelligence. Import a game, identify your athlete, get a highlight reel.", diff --git a/packages/client/package.json b/packages/client/package.json index 366dfa1..491cc71 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/client", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "description": "Typed HTTP client for the ReelEel API. Runtime-agnostic: React Native, browsers, Node.", "license": "MIT", diff --git a/packages/core/package.json b/packages/core/package.json index 5701164..9c59563 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/core", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "description": "Shared ReelEel services: project model, SQLite storage, FFmpeg, jobs, sport plugins, dataset I/O. Used by the CLI, desktop app and PWA.", "license": "MIT", diff --git a/packages/db/package.json b/packages/db/package.json index e1d7fe2..ae52d2f 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/db", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "description": "Turso/libSQL clients and forward-only migrations for ReelEel. Local file by default, Turso when configured.", "license": "MIT", diff --git a/packages/sports/package.json b/packages/sports/package.json index bcf074e..a2abfa2 100644 --- a/packages/sports/package.json +++ b/packages/sports/package.json @@ -1,6 +1,6 @@ { "name": "@reeleel/sports", - "version": "0.2.0", + "version": "0.3.0", "type": "module", "description": "Sport plugin definitions for ReelEel. Soccer ships in-tree; the loader also reads user-installed plugins.", "license": "MIT",