Skip to content

Commit 26ec0ac

Browse files
committed
v0.4.0
1 parent c325adf commit 26ec0ac

5 files changed

Lines changed: 25 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## 0.4.0 (2025-09-17)
4+
5+
### Protocol
6+
7+
No changes.
8+
9+
### Rust Library
10+
11+
- Make `Agent` and `Client` dyn compatible (you'll need to annotate them with `#[async_trait]`) [#97](https://github.com/zed-industries/agent-client-protocol/pull/97)
12+
- `ext_method` and `ext_notification` methods are now more consistent with the other trait methods [#95](https://github.com/zed-industries/agent-client-protocol/pull/95)
13+
- There are also distinct types for `ExtRequest`, `ExtResponse`, and `ExtNotification`
14+
- Rexport `serde_json::RawValue` for easier use [#95](https://github.com/zed-industries/agent-client-protocol/pull/95)
15+
16+
### Typescript Library
17+
18+
- Use Stream abstraction instead of raw byte streams [#93](https://github.com/zed-industries/agent-client-protocol/pull/93)
19+
- Makes it easier to use with websockets instead of stdio
20+
- Improve type safety for method map helpers [#94](https://github.com/zed-industries/agent-client-protocol/pull/94)

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "agent-client-protocol"
33
authors = ["Zed <hi@zed.dev>"]
4-
version = "0.3.1-alpha.1"
4+
version = "0.4.0"
55
edition = "2024"
66
license = "Apache-2.0"
77
description = "A protocol for standardizing communication between code editors and AI coding agents"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zed-industries/agent-client-protocol",
3-
"version": "0.3.1-alpha.1",
3+
"version": "0.4.0",
44
"publishConfig": {
55
"access": "public"
66
},

0 commit comments

Comments
 (0)