Skip to content

Commit 1f26946

Browse files
committed
chore: update agentapi version to 0.2.0
1 parent aa1973f commit 1f26946

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.1.0",
3+
"version": "0.2.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, and Codex`,
16-
Version: "0.1.0",
16+
Version: "0.2.0",
1717
}
1818

1919
func Execute() {

lib/httpapi/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func NewServer(ctx context.Context, agentType mf.AgentType, process *termexec.Pr
7070
})
7171
router.Use(corsMiddleware.Handler)
7272

73-
humaConfig := huma.DefaultConfig("AgentAPI", "0.1.0")
73+
humaConfig := huma.DefaultConfig("AgentAPI", "0.2.0")
7474
humaConfig.Info.Description = "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi"
7575
api := humachi.New(router, humaConfig)
7676
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.1.0"
310+
"version": "0.2.0"
311311
},
312312
"openapi": "3.1.0",
313313
"paths": {

0 commit comments

Comments
 (0)