Skip to content
Open
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
10 changes: 10 additions & 0 deletions src/sacp-conductor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/sacp-conductor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/sacp-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]

## [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
Expand Down
10 changes: 5 additions & 5 deletions src/sacp-cookbook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/sacp-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]

## [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
Expand Down
4 changes: 2 additions & 2 deletions src/sacp-rmcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/sacp-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 10 additions & 0 deletions src/sacp-tokio/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/sacp-tokio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/sacp-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]

## [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
Expand Down
2 changes: 1 addition & 1 deletion src/sacp-trace-viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
11 changes: 11 additions & 0 deletions src/sacp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/sacp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
6 changes: 6 additions & 0 deletions src/yopo/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]

## [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
Expand Down
6 changes: 3 additions & 3 deletions src/yopo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down
Loading