Skip to content

Commit 809e506

Browse files
authored
chore: bump version to 0.6.0 (#64)
1 parent 1773868 commit 809e506

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.6.0
4+
5+
### Features
6+
7+
- Adds support for Auggie CLI.
8+
39
## v0.5.0
410

511
### Features

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.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbopack",

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.5.0")
191+
humaConfig := huma.DefaultConfig("AgentAPI", "0.6.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.5.0"
310+
"version": "0.6.0"
311311
},
312312
"openapi": "3.1.0",
313313
"paths": {

0 commit comments

Comments
 (0)