diff --git a/CHANGELOG.md b/CHANGELOG.md index 99b7341..0e14873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.4.1 + +### Fixes + +- Sets `CGO_ENABLED=0` in build process to improve compatibility with older Linux versions. + ## v0.4.0 ### Breaking changes diff --git a/chat/package.json b/chat/package.json index cd780d1..c62474b 100644 --- a/chat/package.json +++ b/chat/package.json @@ -1,6 +1,6 @@ { "name": "chat", - "version": "0.4.0", + "version": "0.4.1", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/cmd/root.go b/cmd/root.go index 4ece80e..9f7ac65 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -13,7 +13,7 @@ var rootCmd = &cobra.Command{ Use: "agentapi", Short: "AgentAPI CLI", Long: `AgentAPI - HTTP API for Claude Code, Goose, Aider, Gemini and Codex`, - Version: "0.4.0", + Version: "0.4.1", } func Execute() { diff --git a/lib/httpapi/server.go b/lib/httpapi/server.go index 34b11f5..46e1c93 100644 --- a/lib/httpapi/server.go +++ b/lib/httpapi/server.go @@ -188,7 +188,7 @@ func NewServer(ctx context.Context, config ServerConfig) (*Server, error) { }) router.Use(corsMiddleware.Handler) - humaConfig := huma.DefaultConfig("AgentAPI", "0.4.0") + humaConfig := huma.DefaultConfig("AgentAPI", "0.4.1") humaConfig.Info.Description = "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi" api := humachi.New(router, humaConfig) formatMessage := func(message string, userInput string) string { diff --git a/openapi.json b/openapi.json index c77c5b6..e9193f5 100644 --- a/openapi.json +++ b/openapi.json @@ -307,7 +307,7 @@ "info": { "description": "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi", "title": "AgentAPI", - "version": "0.4.0" + "version": "0.4.1" }, "openapi": "3.1.0", "paths": {