Skip to content

Commit 0f26170

Browse files
authored
chore: prep v0.8.0 release (#23)
Manually doing this since release-plz is having issues with the migration
1 parent 6384181 commit 0f26170

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

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.

src/agent-client-protocol/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.8.0 (2025-12-01)
4+
5+
The types from the Rust crate, `agent-client-protocol-schema` has major breaking changes. All exported type are now marked as `#[non_exhaustive]`. Since the schema itself is JSON, and we can introduce new fields and variants in a non-breaking way, we wanted to allow for the same behavior in the Rust library.
6+
7+
All enum variants are also tuple variants now, with their own structs. This made it nicer to represent in the JSON Schema, and also made sure we have `_meta` fields on all variants.
8+
9+
This upgrade will likely come with a lot of compilation errors, but ideally upgrading will be more painless in the future.
10+
311
## 0.7.0 (2025-10-24)
412

513
- Add ability for agents and clients to provide information about their implementation

src/agent-client-protocol/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 <[email protected]>"]
4-
version = "0.7.0"
4+
version = "0.8.0"
55
edition = "2024"
66
license = "Apache-2.0"
77
description = "A protocol for standardizing communication between code editors and AI coding agents"

0 commit comments

Comments
 (0)