Skip to content

Commit 1123e57

Browse files
committed
bump: version to 0.4.0
1 parent 1b6c85b commit 1123e57

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chat",
3-
"version": "0.3.3",
3+
"version": "0.4.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack",

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var rootCmd = &cobra.Command{
1313
Use: "agentapi",
1414
Short: "AgentAPI CLI",
1515
Long: `AgentAPI - HTTP API for Claude Code, Goose, Aider, Gemini and Codex`,
16-
Version: "0.3.3",
16+
Version: "0.4.0",
1717
}
1818

1919
func Execute() {

lib/httpapi/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ func NewServer(ctx context.Context, config ServerConfig) (*Server, error) {
188188
})
189189
router.Use(corsMiddleware.Handler)
190190

191-
humaConfig := huma.DefaultConfig("AgentAPI", "0.3.3")
191+
humaConfig := huma.DefaultConfig("AgentAPI", "0.4.0")
192192
humaConfig.Info.Description = "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi"
193193
api := humachi.New(router, humaConfig)
194194
formatMessage := func(message string, userInput string) string {

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@
307307
"info": {
308308
"description": "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi",
309309
"title": "AgentAPI",
310-
"version": "0.3.3"
310+
"version": "0.4.0"
311311
},
312312
"openapi": "3.1.0",
313313
"paths": {

0 commit comments

Comments
 (0)