Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion apps/cv-worker/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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.",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/sports/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading