From 8d722e62dc721723bf03ee55bb423de87bffac1c Mon Sep 17 00:00:00 2001 From: 777genius Date: Sun, 31 May 2026 22:25:51 +0300 Subject: [PATCH] chore(release): use runtime 0.0.51 --- docs/RELEASE.md | 11 +++++++++++ runtime.lock.json | 14 +++++++------- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/docs/RELEASE.md b/docs/RELEASE.md index 92089034..0444804c 100644 --- a/docs/RELEASE.md +++ b/docs/RELEASE.md @@ -109,6 +109,17 @@ git status git push origin ``` +Before starting the app release workflow, check whether the orchestrator has +new commits that must be included in the packaged runtime: + +- Pull and push the orchestrator repo first. +- If the orchestrator changed after the current `runtime.lock.json` `sourceRef`, + bump the orchestrator `package.json` runtime version, create and push the + matching `v` tag, then update `runtime.lock.json` in this repo + to the same `version`, `sourceRef`, `releaseTag`, and runtime asset filenames. +- Do not start the app release workflow while `runtime.lock.json` still points + at an older orchestrator tag. + ### 2. Create tag and push ```bash diff --git a/runtime.lock.json b/runtime.lock.json index ad88da32..03d7019b 100644 --- a/runtime.lock.json +++ b/runtime.lock.json @@ -1,27 +1,27 @@ { - "version": "0.0.50", - "sourceRef": "v0.0.50", + "version": "0.0.51", + "sourceRef": "v0.0.51", "sourceRepository": "777genius/agent_teams_orchestrator", "releaseRepository": "777genius/agent-teams-ai", - "releaseTag": "v2.2.1", + "releaseTag": "v2.3.0", "assets": { "darwin-arm64": { - "file": "agent-teams-runtime-darwin-arm64-v0.0.50.tar.gz", + "file": "agent-teams-runtime-darwin-arm64-v0.0.51.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "darwin-x64": { - "file": "agent-teams-runtime-darwin-x64-v0.0.50.tar.gz", + "file": "agent-teams-runtime-darwin-x64-v0.0.51.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "linux-x64": { - "file": "agent-teams-runtime-linux-x64-v0.0.50.tar.gz", + "file": "agent-teams-runtime-linux-x64-v0.0.51.tar.gz", "archiveKind": "tar.gz", "binaryName": "claude-multimodel" }, "win32-x64": { - "file": "agent-teams-runtime-win32-x64-v0.0.50.zip", + "file": "agent-teams-runtime-win32-x64-v0.0.51.zip", "archiveKind": "zip", "binaryName": "claude-multimodel.exe" }