diff --git a/CHANGELOG.md b/CHANGELOG.md index f956c6c..626fd5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.6.1 + +### Features +- Handle animation on Amp cli start screen. + ## v0.6.0 ### Features diff --git a/chat/package.json b/chat/package.json index 32b6684..d6411ce 100644 --- a/chat/package.json +++ b/chat/package.json @@ -1,6 +1,6 @@ { "name": "chat", - "version": "0.6.0", + "version": "0.6.1", "private": true, "scripts": { "dev": "next dev --turbopack", diff --git a/lib/httpapi/server.go b/lib/httpapi/server.go index fb45ad4..2d25fca 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.6.0") + humaConfig := huma.DefaultConfig("AgentAPI", "0.6.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 19c4961..d87c9b0 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.6.0" + "version": "0.6.1" }, "openapi": "3.1.0", "paths": {