From f5088835af57c28634ebb7f1c538e387a1fae5bc Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Fri, 13 Feb 2026 15:12:56 -0800 Subject: [PATCH] Fix stale claudeCodeVersion in run.ts and update bump automation (#943) --- src/entrypoints/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entrypoints/run.ts b/src/entrypoints/run.ts index 54eae01..a5de513 100644 --- a/src/entrypoints/run.ts +++ b/src/entrypoints/run.ts @@ -51,7 +51,7 @@ async function installClaudeCode(): Promise { return; } - const claudeCodeVersion = "2.1.31"; + const claudeCodeVersion = "2.1.42"; console.log(`Installing Claude Code v${claudeCodeVersion}...`); for (let attempt = 1; attempt <= 3; attempt++) {