From 3eaeff410bd04fb8d19a23df241740856b880139 Mon Sep 17 00:00:00 2001 From: zynx <> Date: Thu, 18 Jun 2026 23:36:00 +0800 Subject: [PATCH] chore(runtime): pin Claude ACP to 0.39.0 --- crates/aionui-runtime/src/acp_tool_runtime/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/aionui-runtime/src/acp_tool_runtime/types.rs b/crates/aionui-runtime/src/acp_tool_runtime/types.rs index 17a8caf78..b108e5f18 100644 --- a/crates/aionui-runtime/src/acp_tool_runtime/types.rs +++ b/crates/aionui-runtime/src/acp_tool_runtime/types.rs @@ -21,7 +21,7 @@ impl ManagedAcpToolId { pub fn version(self) -> &'static str { match self { Self::CodexAcp => "0.16.0", - Self::ClaudeAgentAcp => "0.47.0", + Self::ClaudeAgentAcp => "0.39.0", } } @@ -225,7 +225,7 @@ mod tests { #[test] fn managed_acp_tool_versions_match_current_pins() { assert_eq!(ManagedAcpToolId::CodexAcp.version(), "0.16.0"); - assert_eq!(ManagedAcpToolId::ClaudeAgentAcp.version(), "0.47.0"); + assert_eq!(ManagedAcpToolId::ClaudeAgentAcp.version(), "0.39.0"); } }