Skip to content

Commit ab943ac

Browse files
committed
chore: update version to 0.7.0
1 parent 24d927a commit ab943ac

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

CHANGELOG.md

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

3+
## 0.7.0
4+
5+
### Features
6+
- Add Support for Opencode.
7+
- Add support for Agent aliases
8+
- Explicitly support AmazonQ
9+
- Bump NEXT.JS version
10+
311
## v0.6.3
412

513
- CI fixes.

chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@
4444
"start": "next start",
4545
"storybook": "storybook dev -p 6006"
4646
},
47-
"version": "0.6.3"
47+
"version": "0.7.0"
4848
}

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package version
44

5-
var Version = "0.6.3"
5+
var Version = "0.7.0"

openapi.json

Lines changed: 7 additions & 7 deletions
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.6.3"
310+
"version": "0.7.0"
311311
},
312312
"openapi": "3.1.0",
313313
"paths": {
@@ -326,10 +326,10 @@
326326
{
327327
"properties": {
328328
"data": {
329-
"$ref": "#/components/schemas/MessageUpdateBody"
329+
"$ref": "#/components/schemas/StatusChangeBody"
330330
},
331331
"event": {
332-
"const": "message_update",
332+
"const": "status_change",
333333
"description": "The event name.",
334334
"type": "string"
335335
},
@@ -346,16 +346,16 @@
346346
"data",
347347
"event"
348348
],
349-
"title": "Event message_update",
349+
"title": "Event status_change",
350350
"type": "object"
351351
},
352352
{
353353
"properties": {
354354
"data": {
355-
"$ref": "#/components/schemas/StatusChangeBody"
355+
"$ref": "#/components/schemas/MessageUpdateBody"
356356
},
357357
"event": {
358-
"const": "status_change",
358+
"const": "message_update",
359359
"description": "The event name.",
360360
"type": "string"
361361
},
@@ -372,7 +372,7 @@
372372
"data",
373373
"event"
374374
],
375-
"title": "Event status_change",
375+
"title": "Event message_update",
376376
"type": "object"
377377
}
378378
]

0 commit comments

Comments
 (0)