Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.11.0

### Features
- Support sending initial prompt via stdin

## v0.10.2

### Features
Expand Down
6 changes: 5 additions & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## Release Process

Before performing a release, perform a local "smoke-test".
Before performing a release, perform a local "smoke-test":

- For most changes, simply running `go test ./e2e` may be sufficient.
- For agent-specific changes, manual testing may be required.

If everything seems OK, you can proceed to do the following:

1. Update the version string in `internal/version/version.go` and run `make gen`.
Expand Down
2 changes: 1 addition & 1 deletion chat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
"start": "next start",
"storybook": "storybook dev -p 6006"
},
"version": "0.10.2"
"version": "0.11.0"
}
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package version

var Version = "0.10.2"
var Version = "0.11.0"
2 changes: 1 addition & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
"info": {
"description": "HTTP API for Claude Code, Goose, and Aider.\n\nhttps://github.com/coder/agentapi",
"title": "AgentAPI",
"version": "0.10.2"
"version": "0.11.0"
},
"openapi": "3.0.3",
"paths": {
Expand Down