diff --git a/src/sacp-conductor/CHANGELOG.md b/src/sacp-conductor/CHANGELOG.md index 075c41e..bc3ce36 100644 --- a/src/sacp-conductor/CHANGELOG.md +++ b/src/sacp-conductor/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [12.0.0](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-conductor-v11.0.0...sacp-conductor-v12.0.0) - 2026-03-18 + +### Added + +- [**breaking**] replace elizacp with Testy, a minimal internal test agent + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v10.0.1...sacp-conductor-v11.0.0) - 2026-01-19 ### Added diff --git a/src/sacp-conductor/Cargo.toml b/src/sacp-conductor/Cargo.toml index 5c6298e..bbe137a 100644 --- a/src/sacp-conductor/Cargo.toml +++ b/src/sacp-conductor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp-conductor" -version = "11.0.0" +version = "12.0.0" edition = "2024" description = "Conductor for orchestrating SACP proxy chains" license = "MIT OR Apache-2.0" @@ -16,9 +16,9 @@ path = "src/main.rs" test-support = [] [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } -sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" } -sacp-trace-viewer = { version = "11.0.0", path = "../sacp-trace-viewer" } +sacp = { version = "12.0.0", path = "../sacp" } +sacp-tokio = { version = "12.0.0", path = "../sacp-tokio" } +sacp-trace-viewer = { version = "11.0.1", path = "../sacp-trace-viewer" } agent-client-protocol-schema.workspace = true anyhow.workspace = true axum.workspace = true diff --git a/src/sacp-cookbook/CHANGELOG.md b/src/sacp-cookbook/CHANGELOG.md index 7b65469..93e6fa8 100644 --- a/src/sacp-cookbook/CHANGELOG.md +++ b/src/sacp-cookbook/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.1](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-cookbook-v11.0.0...sacp-cookbook-v11.0.1) - 2026-03-18 + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-cookbook-v10.0.1...sacp-cookbook-v11.0.0) - 2026-01-19 ### Other diff --git a/src/sacp-cookbook/Cargo.toml b/src/sacp-cookbook/Cargo.toml index 694c5e2..19ae6fc 100644 --- a/src/sacp-cookbook/Cargo.toml +++ b/src/sacp-cookbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp-cookbook" -version = "11.0.0" +version = "11.0.1" edition = "2024" description = "Cookbook of common patterns for building ACP components" license = "MIT OR Apache-2.0" @@ -9,10 +9,10 @@ keywords = ["acp", "agent", "proxy", "mcp", "cookbook"] categories = ["development-tools"] [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } -sacp-conductor = { version = "11.0.0", path = "../sacp-conductor" } -sacp-rmcp = { version = "11.0.0", path = "../sacp-rmcp" } -sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" } +sacp = { version = "12.0.0", path = "../sacp" } +sacp-conductor = { version = "12.0.0", path = "../sacp-conductor" } +sacp-rmcp = { version = "11.0.1", path = "../sacp-rmcp" } +sacp-tokio = { version = "12.0.0", path = "../sacp-tokio" } # Re-export common dependencies needed by cookbook examples rmcp.workspace = true diff --git a/src/sacp-rmcp/CHANGELOG.md b/src/sacp-rmcp/CHANGELOG.md index afe2629..477679d 100644 --- a/src/sacp-rmcp/CHANGELOG.md +++ b/src/sacp-rmcp/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.1](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-rmcp-v11.0.0...sacp-rmcp-v11.0.1) - 2026-03-18 + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v10.0.1...sacp-rmcp-v11.0.0) - 2026-01-19 ### Other diff --git a/src/sacp-rmcp/Cargo.toml b/src/sacp-rmcp/Cargo.toml index 833e194..9298bdb 100644 --- a/src/sacp-rmcp/Cargo.toml +++ b/src/sacp-rmcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp-rmcp" -version = "11.0.0" +version = "11.0.1" edition = "2024" description = "rmcp integration for SACP proxy components" license = "MIT OR Apache-2.0" @@ -9,7 +9,7 @@ keywords = ["acp", "agent", "proxy", "mcp", "rmcp"] categories = ["development-tools"] [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } +sacp = { version = "12.0.0", path = "../sacp" } rmcp.workspace = true futures.workspace = true tokio.workspace = true diff --git a/src/sacp-test/Cargo.toml b/src/sacp-test/Cargo.toml index a241421..267376c 100644 --- a/src/sacp-test/Cargo.toml +++ b/src/sacp-test/Cargo.toml @@ -15,9 +15,9 @@ name = "testy" path = "src/bin/testy.rs" [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } -sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" } -yopo = { version = "11.0.0", path = "../yopo" } +sacp = { version = "12.0.0", path = "../sacp" } +sacp-tokio = { version = "12.0.0", path = "../sacp-tokio" } +yopo = { version = "11.0.1", path = "../yopo" } rmcp = { workspace = true, features = ["server", "client", "transport-child-process", "transport-streamable-http-client-reqwest"] } anyhow.workspace = true uuid.workspace = true diff --git a/src/sacp-tokio/CHANGELOG.md b/src/sacp-tokio/CHANGELOG.md index c54aa45..6952add 100644 --- a/src/sacp-tokio/CHANGELOG.md +++ b/src/sacp-tokio/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [12.0.0](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-tokio-v11.0.0...sacp-tokio-v12.0.0) - 2026-03-18 + +### Added + +- [**breaking**] replace elizacp with Testy, a minimal internal test agent + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v10.1.0...sacp-tokio-v11.0.0) - 2026-01-19 ### Other diff --git a/src/sacp-tokio/Cargo.toml b/src/sacp-tokio/Cargo.toml index 2905ddf..ba66aec 100644 --- a/src/sacp-tokio/Cargo.toml +++ b/src/sacp-tokio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp-tokio" -version = "11.0.0" +version = "12.0.0" edition = "2024" description = "Tokio-based utilities for SACP (Symposium's extensions to ACP)" license = "MIT OR Apache-2.0" @@ -9,7 +9,7 @@ keywords = ["acp", "agent", "protocol", "ai", "tokio"] categories = ["development-tools"] [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } +sacp = { version = "12.0.0", path = "../sacp" } futures.workspace = true serde.workspace = true diff --git a/src/sacp-trace-viewer/CHANGELOG.md b/src/sacp-trace-viewer/CHANGELOG.md index 0f7c2c2..93cc6a1 100644 --- a/src/sacp-trace-viewer/CHANGELOG.md +++ b/src/sacp-trace-viewer/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.1](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-trace-viewer-v11.0.0...sacp-trace-viewer-v11.0.1) - 2026-03-18 + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [6.0.0] - 2025-12-15 ### Other diff --git a/src/sacp-trace-viewer/Cargo.toml b/src/sacp-trace-viewer/Cargo.toml index 35427a1..5b4bfe3 100644 --- a/src/sacp-trace-viewer/Cargo.toml +++ b/src/sacp-trace-viewer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp-trace-viewer" -version = "11.0.0" +version = "11.0.1" edition = "2024" description = "Interactive sequence diagram viewer for SACP trace files" license = "MIT OR Apache-2.0" diff --git a/src/sacp/CHANGELOG.md b/src/sacp/CHANGELOG.md index b878d9a..69b94af 100644 --- a/src/sacp/CHANGELOG.md +++ b/src/sacp/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [12.0.0](https://github.com/agentclientprotocol/symposium-acp/compare/sacp-v11.0.0...sacp-v12.0.0) - 2026-03-18 + +### Added + +- [**breaking**] replace elizacp with Testy, a minimal internal test agent + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol +- consolidate JsonRpc trait implementations with macros + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-v10.1.0...sacp-v11.0.0) - 2026-01-19 ### Added diff --git a/src/sacp/Cargo.toml b/src/sacp/Cargo.toml index 84a4eb2..651b6dd 100644 --- a/src/sacp/Cargo.toml +++ b/src/sacp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sacp" -version = "11.0.0" +version = "12.0.0" edition = "2024" description = "Core protocol types and traits for SACP (Symposium's extensions to ACP)" license = "MIT OR Apache-2.0" diff --git a/src/yopo/CHANGELOG.md b/src/yopo/CHANGELOG.md index eb06491..30ec3bb 100644 --- a/src/yopo/CHANGELOG.md +++ b/src/yopo/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [11.0.1](https://github.com/agentclientprotocol/symposium-acp/compare/yopo-v11.0.0...yopo-v11.0.1) - 2026-03-18 + +### Other + +- update all repository URLs from symposium-dev to agentclientprotocol + ## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/yopo-v10.0.1...yopo-v11.0.0) - 2026-01-19 ### Other diff --git a/src/yopo/Cargo.toml b/src/yopo/Cargo.toml index 2496562..603580c 100644 --- a/src/yopo/Cargo.toml +++ b/src/yopo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yopo" -version = "11.0.0" +version = "11.0.1" edition = "2024" description = "YOPO (You Only Prompt Once) - A simple ACP client for one-shot prompts" license = "MIT OR Apache-2.0" @@ -14,8 +14,8 @@ name = "yopo" path = "src/main.rs" [dependencies] -sacp = { version = "11.0.0", path = "../sacp" } -sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" } +sacp = { version = "12.0.0", path = "../sacp" } +sacp-tokio = { version = "12.0.0", path = "../sacp-tokio" } tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } tracing.workspace = true tracing-subscriber.workspace = true