From c2d2e61d30e617f9801a4b1a5c85b290f95f5564 Mon Sep 17 00:00:00 2001 From: JSONbored <49853598+JSONbored@users.noreply.github.com> Date: Tue, 21 Jul 2026 12:10:45 -0700 Subject: [PATCH] chore(release): bump ORB target version to 3.2.1 The fix commits just merged in #7931 warrant a patch bump per scripts/orb-release-core.ts's own inferred-version logic, but the manifest still targets 3.2.0 -- the version already promoted to stable earlier today. Without this, orb-beta-release.yml's due check short-circuits (targetAlreadyStable) and never cuts a beta containing the fix. --- orb-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orb-manifest.json b/orb-manifest.json index b28e2f501..1fc4a97bc 100644 --- a/orb-manifest.json +++ b/orb-manifest.json @@ -1,4 +1,4 @@ { - "version": "3.2.0", + "version": "3.2.1", "description": "Source of truth for the self-hostable loopover-orb container image's target release version (ghcr.io/jsonbored/loopover-selfhost). Bumped by a maintainer when a feat/fix/breaking change since the last stable orb-v tag warrants moving to a new target version -- scripts/orb-release-core.ts and .github/workflows/orb-beta-release.yml read this file to decide what version the next automated beta snapshot targets. Promoting a beta to a stable orb-vX.Y.Z release is still a manual `git tag` -- this manifest only drives the automated beta channel." }