From b79fb5ea18a68f5853892fca94684751fb8fe275 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Thu, 13 Aug 2026 12:23:57 +0000 Subject: [PATCH] =?UTF-8?q?release:=20v0.2.26=20=E2=80=94=20blog=20feed=20?= =?UTF-8?q?survives=20a=20database=20blip?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No Rust changed since v0.2.25. Every commit in this range is web, CI or docs, so the binaries this tag builds are identical to the previous ones and the version marks the site rather than the client: - blog: serve last known good instead of 500 when SQLite Cloud blinks (#18) - ci: add ThreatCrush security scan (#17) - feat(web): WebMCP callout on the homepage (#16) - docs(web): document WebMCP tools (#15) - feat(web): WebMCP support on c0mpute.com (#14) Co-Authored-By: Claude Opus 5 (1M context) --- Cargo.lock | 24 +++++++++---------- Cargo.toml | 2 +- apps/tui/package.json | 2 +- apps/web/package.json | 2 +- .../web/src/app/releases/latest.json/route.ts | 2 +- package.json | 2 +- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5be54f9..bf927a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -476,7 +476,7 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "c0mpute-api" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "c0mpute-proto", @@ -491,7 +491,7 @@ dependencies = [ [[package]] name = "c0mpute-cli" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "base64", @@ -514,7 +514,7 @@ dependencies = [ [[package]] name = "c0mpute-core" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "async-trait", @@ -547,7 +547,7 @@ dependencies = [ [[package]] name = "c0mpute-doctor" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "serde", @@ -559,7 +559,7 @@ dependencies = [ [[package]] name = "c0mpute-gateway" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "axum", @@ -577,7 +577,7 @@ dependencies = [ [[package]] name = "c0mpute-net" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "async-trait", @@ -594,7 +594,7 @@ dependencies = [ [[package]] name = "c0mpute-proto" -version = "0.2.25" +version = "0.2.26" dependencies = [ "blake3", "hex", @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "c0mpute-secure-chat" -version = "0.2.25" +version = "0.2.26" dependencies = [ "aes-gcm", "anyhow", @@ -629,7 +629,7 @@ dependencies = [ [[package]] name = "c0mpute-store" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "blake3", @@ -644,7 +644,7 @@ dependencies = [ [[package]] name = "c0mpute-transcode" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "c0mpute-proto", @@ -656,7 +656,7 @@ dependencies = [ [[package]] name = "c0mpute-update" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "hex", @@ -670,7 +670,7 @@ dependencies = [ [[package]] name = "c0mpute-verify" -version = "0.2.25" +version = "0.2.26" dependencies = [ "anyhow", "blake3", diff --git a/Cargo.toml b/Cargo.toml index 144aa3c..7beb051 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ members = [ ] [workspace.package] -version = "0.2.25" +version = "0.2.26" edition = "2024" license = "MIT" repository = "https://github.com/profullstack/c0mpute" diff --git a/apps/tui/package.json b/apps/tui/package.json index affab3a..31d6f4a 100644 --- a/apps/tui/package.json +++ b/apps/tui/package.json @@ -1,6 +1,6 @@ { "name": "@c0mpute/tui", - "version": "0.2.25", + "version": "0.2.26", "private": true, "type": "module", "bin": { diff --git a/apps/web/package.json b/apps/web/package.json index f67740b..cc105d3 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "c0mpute", - "version": "0.2.25", + "version": "0.2.26", "private": true, "type": "module", "scripts": { diff --git a/apps/web/src/app/releases/latest.json/route.ts b/apps/web/src/app/releases/latest.json/route.ts index 35b0c58..bc37ff5 100644 --- a/apps/web/src/app/releases/latest.json/route.ts +++ b/apps/web/src/app/releases/latest.json/route.ts @@ -28,7 +28,7 @@ export const dynamic = "force-dynamic"; * this in sync with the workspace version in `Cargo.toml` on each release so a * freshly built CLI reports "already latest" rather than a phantom upgrade. */ -const FALLBACK_VERSION = "0.2.25"; +const FALLBACK_VERSION = "0.2.26"; const FALLBACK_MIN_REQUIRED = "0.0.1"; type Channel = "stable" | "beta" | "nightly"; diff --git a/package.json b/package.json index aaa1858..cbed75c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "c0mpute-monorepo", - "version": "0.2.25", + "version": "0.2.26", "private": true, "workspaces": [ "apps/*",