Skip to content

Commit 758ebc9

Browse files
chore: release
1 parent a17b389 commit 758ebc9

15 files changed

Lines changed: 101 additions & 64 deletions

File tree

Cargo.lock

Lines changed: 49 additions & 49 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 = "1.2.0" }
31-
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "1.2.0" }
32-
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "1.2.0" }
33-
agent-client-protocol-http = { path = "src/agent-client-protocol-http", version = "1.2.0" }
34-
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "1.2.0" }
35-
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "2.0.0" }
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 = "2.0.1" }
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 = "1.2.0" }
37+
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "2.0.0" }
3838
yopo = { package = "agent-client-protocol-yopo", path = "src/yopo" }
3939

4040
# Protocol

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

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

88
## [Unreleased]
99

10+
## [2.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v1.2.0...agent-client-protocol-conductor-v2.0.0) - 2026-07-20
11+
12+
### Other
13+
14+
- *(deps)* bump the minor group with 14 updates ([#258](https://github.com/agentclientprotocol/rust-sdk/pull/258))
15+
1016
## [1.2.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v1.1.0...agent-client-protocol-conductor-v1.2.0) - 2026-07-07
1117

1218
### Added

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 = "1.2.0"
3+
version = "2.0.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

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 = "1.2.0"
3+
version = "2.0.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 = "1.2.0"
3+
version = "2.0.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## [Unreleased]
44

5+
## [2.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-http-v1.2.0...agent-client-protocol-http-v2.0.0) - 2026-07-20
6+
7+
### Fixed
8+
9+
- *(acp)* Handle incoming EOF correctly ([#261](https://github.com/agentclientprotocol/rust-sdk/pull/261))
10+
511
## [1.1.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-http-v1.0.1...agent-client-protocol-http-v1.1.0) - 2026-07-06
612

713
### Added

src/agent-client-protocol-http/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-http"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

src/agent-client-protocol-polyfill/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-polyfill"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

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

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

88
## [Unreleased]
99

10+
## [2.0.1](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-rmcp-v2.0.0...agent-client-protocol-rmcp-v2.0.1) - 2026-07-20
11+
12+
### Other
13+
14+
- updated the following local packages: agent-client-protocol
15+
1016
## [2.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-rmcp-v1.1.0...agent-client-protocol-rmcp-v2.0.0) - 2026-07-07
1117

1218
### Added

0 commit comments

Comments
 (0)