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
2 changes: 1 addition & 1 deletion .release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ git_tag_name = "v{{ version }}"
git_release_latest = true
version_group = "acp"

# Experimental HTTP/WebSocket transport; keep independent versioning for now.
[[package]]
name = "agent-client-protocol-http"
version_group = "acp"

[[package]]
name = "agent-client-protocol-derive"
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

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

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

[workspace.dependencies]
# Internal crates
agent-client-protocol = { path = "src/agent-client-protocol", version = "0.15.1" }
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "0.15.1" }
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "0.15.1" }
agent-client-protocol-http = { path = "src/agent-client-protocol-http", version = "0.1.1" }
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "0.15.1" }
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "0.15.1" }
agent-client-protocol = { path = "src/agent-client-protocol", version = "1.0.0" }
agent-client-protocol-conductor = { path = "src/agent-client-protocol-conductor", version = "1.0.0" }
agent-client-protocol-derive = { path = "src/agent-client-protocol-derive", version = "1.0.0" }
agent-client-protocol-http = { path = "src/agent-client-protocol-http", version = "1.0.0" }
agent-client-protocol-polyfill = { path = "src/agent-client-protocol-polyfill", version = "1.0.0" }
agent-client-protocol-rmcp = { path = "src/agent-client-protocol-rmcp", version = "1.0.0" }
agent-client-protocol-test = { path = "src/agent-client-protocol-test" }
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "0.15.1" }
agent-client-protocol-trace-viewer = { path = "src/agent-client-protocol-trace-viewer", version = "1.0.0" }
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]

## [1.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v0.15.1...agent-client-protocol-conductor-v1.0.0) - 2026-06-24

### Added

- *(test)* Expand scenarios testy can support ([#221](https://github.com/agentclientprotocol/rust-sdk/pull/221))

## [0.15.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-conductor-v0.14.0...agent-client-protocol-conductor-v0.15.0) - 2026-06-18

### Added
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ async fn test_trace_mcp_tool_call() -> Result<(), agent_client_protocol::Error>
"capabilities": Object {},
"clientInfo": Object {
"name": String("rmcp"),
"version": String("1.7.0"),
"version": String("1.8.0"),
},
},
},
Expand All @@ -667,7 +667,7 @@ async fn test_trace_mcp_tool_call() -> Result<(), agent_client_protocol::Error>
},
"serverInfo": Object {
"name": String("rmcp"),
"version": String("1.7.0"),
"version": String("1.8.0"),
},
"instructions": String("A simple test MCP server with an echo tool"),
},
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-derive"
version = "0.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/agent-client-protocol-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-http-v0.1.1...agent-client-protocol-http-v1.0.0) - 2026-06-24

### Other

- *(deps)* bump tower-http from 0.6.11 to 0.7.0 ([#220](https://github.com/agentclientprotocol/rust-sdk/pull/220))

## [0.1.1](https://github.com/agentclientprotocol/rust-sdk/compare/agent-client-protocol-http-v0.1.0...agent-client-protocol-http-v0.1.1) - 2026-06-22

### Other
Expand Down
2 changes: 1 addition & 1 deletion src/agent-client-protocol-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent-client-protocol-http"
version = "0.1.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions src/agent-client-protocol/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## [Unreleased]

## [1.0.0](https://github.com/agentclientprotocol/rust-sdk/compare/v0.15.1...v1.0.0) - 2026-06-24

### Added

- *(deps)* bump protocol schema to 1.1.0 ([#224](https://github.com/agentclientprotocol/rust-sdk/pull/224))

### Other

- *(acp)* Handle large future sizes in run_until ([#225](https://github.com/agentclientprotocol/rust-sdk/pull/225))

## [0.15.1](https://github.com/agentclientprotocol/rust-sdk/compare/v0.15.0...v0.15.1) - 2026-06-22

### Fixed
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.15.1"
version = "1.0.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down