chore: bump version to 5.2.4

Generated with swe-agent-bot

Co-Authored-By: swe-agent-bot <agent@swe-agent.ai>
This commit is contained in:
cexll
2025-12-16 10:17:47 +08:00
parent d215c33549
commit f57ea2df59
2 changed files with 4 additions and 4 deletions

View File

@@ -14,7 +14,7 @@ import (
)
const (
version = "5.2.3"
version = "5.2.4"
defaultWorkdir = "."
defaultTimeout = 7200 // seconds
codexLogLineLimit = 1000

View File

@@ -2691,7 +2691,7 @@ func TestVersionFlag(t *testing.T) {
t.Errorf("exit = %d, want 0", code)
}
})
want := "codeagent-wrapper version 5.2.3\n"
want := "codeagent-wrapper version 5.2.4\n"
if output != want {
t.Fatalf("output = %q, want %q", output, want)
}
@@ -2705,7 +2705,7 @@ func TestVersionShortFlag(t *testing.T) {
t.Errorf("exit = %d, want 0", code)
}
})
want := "codeagent-wrapper version 5.2.3\n"
want := "codeagent-wrapper version 5.2.4\n"
if output != want {
t.Fatalf("output = %q, want %q", output, want)
}
@@ -2719,7 +2719,7 @@ func TestVersionLegacyAlias(t *testing.T) {
t.Errorf("exit = %d, want 0", code)
}
})
want := "codex-wrapper version 5.2.3\n"
want := "codex-wrapper version 5.2.4\n"
if output != want {
t.Fatalf("output = %q, want %q", output, want)
}