Skip to content

Commit fa50b90

Browse files
chore: release
1 parent bb13786 commit fa50b90

17 files changed

Lines changed: 133 additions & 59 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ homepage = "https://github.com/agentclientprotocol/rust-sdk"
2727

2828
[workspace.dependencies]
2929
# Internal crates
30-
agent-client-protocol = { path = "src/agent-client-protocol", version = "2.0.0" }
31-
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "2.0.0" }
32-
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "2.0.0" }
33-
agent-client-protocol-http = { path = "src/agent-client-protocol-http", version = "2.0.0" }
34-
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "2.0.0" }
35-
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "3.0.0" }
30+
agent-client-protocol = { path = "src/agent-client-protocol", version = "2.1.0" }
31+
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "2.1.0" }
32+
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "2.1.0" }
33+
agent-client-protocol-http = { path = "src/agent-client-protocol-http", version = "2.1.0" }
34+
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "2.1.0" }
35+
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "3.1.0" }
3636
agent-client-protocol-test = { path = "src/agent-client-protocol-test" }
37-
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "2.0.0" }
37+
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "2.1.0" }
3838
yopo = { package = "agent-client-protocol-yopo", path = "src/yopo" }
3939

4040
# Protocol

src/agent-client-protocol-conductor/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.1.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v2.0.0...agent-client-protocol-conductor-v2.1.0) - 2026-08-24
11+
12+
### Added
13+
14+
- *(unstable-v2)* Add runnable v2 quickstart examples ([#330](https://github.com/agentclientprotocol/rust-sdk/pull/330))
15+
- *(unstable-v2)* add v2 resume session builder ([#329](https://github.com/agentclientprotocol/rust-sdk/pull/329))
16+
- *(acp)* add proxy protocol router for v2 ([#324](https://github.com/agentclientprotocol/rust-sdk/pull/324))
17+
- *(acp)* Add v2 proxy MCP attachment ([#314](https://github.com/agentclientprotocol/rust-sdk/pull/314))
18+
- *(polyfill)* Support v2 MCP-over-ACP bridge ([#305](https://github.com/agentclientprotocol/rust-sdk/pull/305))
19+
- *(conductor)* add v2 proxy initialization ([#302](https://github.com/agentclientprotocol/rust-sdk/pull/302))
20+
1021
### Added
1122

1223
- Add opt-in protocol-v2 initialization for agent and nested proxy chains

src/agent-client-protocol-conductor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-client-protocol-conductor"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

src/agent-client-protocol-cookbook/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.1.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-cookbook-v2.0.0...agent-client-protocol-cookbook-v2.1.0) - 2026-08-24
11+
12+
### Added
13+
14+
- *(unstable-v2)* Add runnable v2 quickstart examples ([#330](https://github.com/agentclientprotocol/rust-sdk/pull/330))
15+
- *(unstable-v2)* add v2 resume session builder ([#329](https://github.com/agentclientprotocol/rust-sdk/pull/329))
16+
- *(acp)* add proxy protocol router for v2 ([#324](https://github.com/agentclientprotocol/rust-sdk/pull/324))
17+
- *(acp)* Add v2 proxy MCP attachment ([#314](https://github.com/agentclientprotocol/rust-sdk/pull/314))
18+
1019
### Added
1120

1221
- Add a compiled draft-v2 one-shot prompt recipe that handles initialization,

src/agent-client-protocol-cookbook/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-client-protocol-cookbook"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

src/agent-client-protocol-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agent-client-protocol-derive"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

0 commit comments

Comments
 (0)