diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e14873..a820337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.5.0 + +### Features + +- Adds support for Cursor CLI. + ## v0.4.1 ### Fixes diff --git a/chat/package.json b/chat/package.json index c62474b..b8b3110 100644 --- a/chat/package.json +++ b/chat/package.json @@ -1,6 +1,6 @@ { "name": "chat", - "version": "0.4.1", + "version": "0.5.0", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/lib/httpapi/server.go b/lib/httpapi/server.go index 46e1c93..986d071 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.1") + humaConfig := huma.DefaultConfig("AgentAPI", "0.5.0") 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 e9193f5..b79f9c9 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.1" + "version": "0.5.0" }, "openapi": "3.1.0", "paths": {