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
6 changes: 6 additions & 0 deletions src/elizacp/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]

## [6.0.1](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v6.0.0...elizacp-v6.0.1) - 2025-12-17

### Other

- updated the following local packages: sacp, sacp-tokio

## [4.0.1](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v4.0.0...elizacp-v4.0.1) - 2025-12-15

### Other
Expand Down
6 changes: 3 additions & 3 deletions src/elizacp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "elizacp"
version = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "Classic Eliza chatbot as an ACP agent for testing"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ path = "src/main.rs"
test = false

[dependencies]
sacp = { version = "6.0.0", path = "../sacp" }
sacp = { version = "7.0.0", path = "../sacp" }
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
clap.workspace = true
Expand All @@ -31,7 +31,7 @@ tokio-util.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
uuid.workspace = true
sacp-tokio = { version = "6.0.0", path = "../sacp-tokio" }
sacp-tokio = { version = "7.0.0", path = "../sacp-tokio" }

[dev-dependencies]
expect-test.workspace = true
Expand Down
8 changes: 8 additions & 0 deletions src/sacp-conductor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v6.0.0...sacp-conductor-v7.0.0) - 2025-12-17

### Other

- update examples and tests to use new MCP server API
- update MCP server documentation for new API
- rename handler chain terminology to connection builder

## [5.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v5.0.0...sacp-conductor-v5.0.1) - 2025-12-15

### Other
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 = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "Conductor for orchestrating SACP proxy chains"
license = "MIT OR Apache-2.0"
Expand All @@ -12,9 +12,9 @@ categories = ["development-tools"]
test-support = []

[dependencies]
sacp = { version = "6.0.0", path = "../sacp" }
sacp-tokio = { version = "6.0.0", path = "../sacp-tokio" }
sacp-trace-viewer = { version = "6.0.0", path = "../sacp-trace-viewer" }
sacp = { version = "7.0.0", path = "../sacp" }
sacp-tokio = { version = "7.0.0", path = "../sacp-tokio" }
sacp-trace-viewer = { version = "7.0.0", path = "../sacp-trace-viewer" }
agent-client-protocol-schema.workspace = true
anyhow.workspace = true
axum.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion src/sacp-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sacp-derive"
version = "6.0.0"
version = "7.0.0"
edition = "2021"
description = "Derive macros for SACP JSON-RPC traits"
license = "MIT OR Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions src/sacp-rmcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v6.0.0...sacp-rmcp-v7.0.0) - 2025-12-17

### Other

- update examples and tests to use new MCP server API
- update MCP server documentation for new API

## [0.10.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v0.9.0...sacp-rmcp-v0.10.0) - 2025-12-15

### 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 = "6.0.0"
version = "7.0.0"
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 = "6.0.0", path = "../sacp" }
sacp = { version = "7.0.0", path = "../sacp" }
rmcp.workspace = true
futures.workspace = true
tokio.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions src/sacp-tee/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]

## [6.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v6.0.0...sacp-tee-v6.0.1) - 2025-12-17

### Other

- rename handler chain terminology to connection builder

## [0.2.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v0.2.0...sacp-tee-v0.2.1) - 2025-12-15

### Other
Expand Down
6 changes: 3 additions & 3 deletions src/sacp-tee/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sacp-tee"
version = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "A debugging proxy that logs all ACP traffic to a file"
license = "MIT OR Apache-2.0"
Expand All @@ -12,8 +12,8 @@ categories = ["development-tools", "development-tools::debugging"]
anyhow.workspace = true
chrono.workspace = true
clap = { workspace = true, features = ["derive"] }
sacp = { version = "6.0.0", path = "../sacp" }
sacp-tokio = { version = "6.0.0", path = "../sacp-tokio" }
sacp = { version = "7.0.0", path = "../sacp" }
sacp-tokio = { version = "7.0.0", path = "../sacp-tokio" }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
tokio = { workspace = true, features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion src/sacp-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.0](https://github.com/symposium-dev/symposium-acp/releases/tag/sacp-test-v6.0.0) - 2025-12-15
## [7.0.0](https://github.com/symposium-dev/symposium-acp/releases/tag/sacp-test-v7.0.0) - 2025-12-15

### Added

Expand Down
6 changes: 3 additions & 3 deletions src/sacp-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sacp-test"
version = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "Test utilities and mock implementations for SACP"
license = "MIT OR Apache-2.0"
Expand All @@ -10,8 +10,8 @@ name = "mcp-echo-server"
path = "src/bin/mcp_echo_server.rs"

[dependencies]
sacp = { version = "6.0.0", path = "../sacp" }
yopo = { version = "6.0.0", path = "../yopo" }
sacp = { version = "7.0.0", path = "../sacp" }
yopo = { version = "7.0.0", path = "../yopo" }
rmcp = { workspace = true, features = ["server"] }
schemars.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions src/sacp-tokio/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]

## [6.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v6.0.0...sacp-tokio-v6.0.1) - 2025-12-17

### Other

- updated the following local packages: sacp

## [3.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v3.0.0...sacp-tokio-v3.0.1) - 2025-12-15

### Fixed
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 = "6.0.0"
version = "7.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 = "6.0.0", path = "../sacp" }
sacp = { version = "7.0.0", path = "../sacp" }
futures.workspace = true

serde.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions src/sacp-trace-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [6.0.0] - 2025-12-15

### Other

- Initial release
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 = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "Interactive sequence diagram viewer for SACP trace files"
license = "MIT OR Apache-2.0"
Expand Down
13 changes: 13 additions & 0 deletions src/sacp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-v6.0.0...sacp-v7.0.0) - 2025-12-17

### Fixed

- match session messages from *agent*, not *client*

### Other

- update examples and tests to use new MCP server API
- update MCP server documentation for new API
- rename handler chain terminology to connection builder
- improved docs

## [4.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-v3.0.0...sacp-v4.0.0) - 2025-12-15

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions src/sacp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sacp"
version = "6.0.0"
version = "7.0.0"
edition = "2024"
description = "Core protocol types and traits for SACP (Symposium's extensions to ACP)"
license = "MIT OR Apache-2.0"
Expand All @@ -10,7 +10,7 @@ categories = ["development-tools"]

[dependencies]
agent-client-protocol-schema.workspace = true
sacp-derive = { version = "6.0.0", path = "../sacp-derive" }
sacp-derive = { version = "7.0.0", path = "../sacp-derive" }
anyhow.workspace = true
boxfnonce.workspace = true
futures.workspace = true
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]

## [6.0.1](https://github.com/symposium-dev/symposium-acp/compare/yopo-v6.0.0...yopo-v6.0.1) - 2025-12-17

### Other

- updated the following local packages: sacp, sacp-tokio

## [2.0.1](https://github.com/symposium-dev/symposium-acp/compare/yopo-v2.0.0...yopo-v2.0.1) - 2025-12-15

### Fixed
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 = "6.0.0"
version = "7.0.0"
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 = "6.0.0", path = "../sacp" }
sacp-tokio = { version = "6.0.0", path = "../sacp-tokio" }
sacp = { version = "7.0.0", path = "../sacp" }
sacp-tokio = { version = "7.0.0", path = "../sacp-tokio" }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
tracing.workspace = true
tracing-subscriber.workspace = true
Expand Down