Skip to content

Commit cfc3ca1

Browse files
authored
Quality of life improvements with the SDK (#4)
* Remove extra files * Use simpler RawValue.to_owned method * Export necessary RPC types. Fixes an issue where certain fields weren't public enough * Add Display for RequestId
1 parent 719a26c commit cfc3ca1

File tree

8 files changed

+114
-2483
lines changed

8 files changed

+114
-2483
lines changed

CHANGELOG.md

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

3+
## 0.5.0 (2025-10-20)
4+
5+
- Export necessary RPC types. Fixes an issue where certain fields weren't public enough.
6+
- Make id types easier to create and add `PartialEq` and `Eq` impls for as many types as possible.
7+
38
## 0.4.8 (2025-10-16)
49

510
- Export `acp::Result<T, E = acp::Error>` for easier indication of ACP errors.

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 2 deletions
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.4.8"
4+
version = "0.5.0"
55
edition = "2024"
66
license = "Apache-2.0"
77
description = "A protocol for standardizing communication between code editors and AI coding agents"
@@ -17,10 +17,11 @@ include = ["/src/**/*.rs", "/README.md", "/LICENSE", "/Cargo.toml"]
1717
unstable = ["agent-client-protocol-schema/unstable"]
1818

1919
[dependencies]
20-
agent-client-protocol-schema = "0.4.10"
20+
agent-client-protocol-schema = { version = "0.4.11" }
2121
anyhow = "1"
2222
async-broadcast = "0.7"
2323
async-trait = "0.1"
24+
derive_more = { version = "2", features = ["from"] }
2425
futures = { version = "0.3" }
2526
log = "0.4"
2627
parking_lot = "0.12"

schema/meta.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)