Skip to content

Commit 88f64c8

Browse files
authored
chore: bump version to 0.4.0 (#55)
1 parent 1b6c85b commit 88f64c8

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
## v0.4.0
4+
5+
### Breaking changes
6+
7+
- If you're running agentapi behind a reverse proxy, you'll now likely need to set the `--allowed-hosts` flag. See the [README](./README.md) for more details.
8+
9+
### New features
10+
11+
- Sourcegraph Amp support
12+
- Added a new `--allowed-hosts` flag to the `server` command.
13+
14+
### Fixes
15+
16+
- Updated Codex support after its TUI has been updated in a recent version.

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)