Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ homepage = "https://github.com/agentclientprotocol/rust-sdk"

[workspace.dependencies]
# Internal crates
agent-client-protocol = { path = "src/agent-client-protocol", version = "0.12.1" }
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "0.12.1" }
agent-client-protocol = { path = "src/agent-client-protocol", version = "0.13.0" }
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "0.12.2" }
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "0.11.1" }
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "0.12.1" }
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "0.11.2" }
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "0.12.2" }
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "0.11.3" }
agent-client-protocol-test = { path = "src/agent-client-protocol-test" }
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "0.11.1" }
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "0.11.2" }
yopo = { package = "agent-client-protocol-yopo", path = "src/yopo" }

# Protocol
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-conductor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.2](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v0.12.1...agent-client-protocol-conductor-v0.12.2) - 2026-06-01

### Added

- *(acp)* Extract all rmcp logic to the rmcp crate ([#180](https://github.com/agentclientprotocol/rust-sdk/pull/180))

## [0.12.1](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v0.12.0...agent-client-protocol-conductor-v0.12.1) - 2026-05-17

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-conductor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-conductor"
version = "0.12.1"
version = "0.12.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-cookbook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.3](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-cookbook-v0.11.2...agent-client-protocol-cookbook-v0.11.3) - 2026-06-01

### Added

- *(acp)* Extract all rmcp logic to the rmcp crate ([#180](https://github.com/agentclientprotocol/rust-sdk/pull/180))

## [0.11.2](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-cookbook-v0.11.1...agent-client-protocol-cookbook-v0.11.2) - 2026-05-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-cookbook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-cookbook"
version = "0.11.2"
version = "0.11.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-polyfill/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.2](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-polyfill-v0.12.1...agent-client-protocol-polyfill-v0.12.2) - 2026-06-01

### Other

- updated the following local packages: agent-client-protocol

## [0.12.1](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-polyfill-v0.12.0...agent-client-protocol-polyfill-v0.12.1) - 2026-05-17

### Other
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-polyfill/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-polyfill"
version = "0.12.1"
version = "0.12.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-rmcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.3](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-rmcp-v0.11.2...agent-client-protocol-rmcp-v0.11.3) - 2026-06-01

### Added

- *(acp)* Extract all rmcp logic to the rmcp crate ([#180](https://github.com/agentclientprotocol/rust-sdk/pull/180))

### Added

- Add the MCP server builder APIs moved out of `agent-client-protocol`, keeping `rmcp` and Tokio dependencies in this integration crate.
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-rmcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-rmcp"
version = "0.11.2"
version = "0.11.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-trace-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.2](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-trace-viewer-v0.11.1...agent-client-protocol-trace-viewer-v0.11.2) - 2026-06-01

### Other

- update Cargo.lock dependencies

## [0.11.1](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-trace-viewer-v0.11.0...agent-client-protocol-trace-viewer-v0.11.1) - 2026-05-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-trace-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-trace-viewer"
version = "0.11.1"
version = "0.11.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions src/agent-client-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [0.13.0](https://github.com/agentclientprotocol/rust-sdk/compare/v0.12.1...v0.13.0) - 2026-06-01

### Added

- *(acp)* stabilize logout support ([#185](https://github.com/agentclientprotocol/rust-sdk/pull/185))
- *(acp)* Extract all rmcp logic to the rmcp crate ([#180](https://github.com/agentclientprotocol/rust-sdk/pull/180))
- *(acp)* Add unstable (very experimental!) protocol v2 support ([#170](https://github.com/agentclientprotocol/rust-sdk/pull/170))

### Changed

- Move the `rmcp`-backed MCP server builder to `agent-client-protocol-rmcp`, removing `tokio`, `tokio-util`, and `rmcp` from the core crate's normal dependency graph.
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol"
version = "0.12.1"
version = "0.13.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down