Skip to content

Commit 27d1f66

Browse files
authored
Merge pull request #89 from symposium-dev/release-plz-2025-12-18T18-36-17Z
chore: release
2 parents 0169f1e + a212a78 commit 27d1f66

File tree

19 files changed

+112
-25
lines changed

19 files changed

+112
-25
lines changed

src/elizacp/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v8.0.0...elizacp-v9.0.0) - 2025-12-19
11+
12+
### Added
13+
14+
- *(sacp)* [**breaking**] require Send for JrMessageHandler with boxing witness macros
15+
- *(sacp)* [**breaking**] add scoped lifetime support for MCP servers
16+
17+
### Other
18+
19+
- Merge pull request #88 from nikomatsakis/main
20+
1021
## [8.0.0](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v7.0.0...elizacp-v8.0.0) - 2025-12-17
1122

1223
### Other

src/elizacp/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elizacp"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
edition = "2024"
55
description = "Classic Eliza chatbot as an ACP agent for testing"
66
license = "MIT OR Apache-2.0"
@@ -16,7 +16,7 @@ path = "src/main.rs"
1616
test = false
1717

1818
[dependencies]
19-
sacp = { version = "8.0.0", path = "../sacp" }
19+
sacp = { version = "9.0.0", path = "../sacp" }
2020
agent-client-protocol-schema.workspace = true
2121
anyhow.workspace = true
2222
clap.workspace = true
@@ -31,7 +31,7 @@ tokio-util.workspace = true
3131
tracing.workspace = true
3232
tracing-subscriber.workspace = true
3333
uuid.workspace = true
34-
sacp-tokio = { version = "8.0.0", path = "../sacp-tokio" }
34+
sacp-tokio = { version = "9.0.0", path = "../sacp-tokio" }
3535

3636
[dev-dependencies]
3737
expect-test.workspace = true

src/sacp-conductor/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v8.0.0...sacp-conductor-v9.0.0) - 2025-12-19
11+
12+
### Added
13+
14+
- *(sacp)* [**breaking**] require Send for JrMessageHandler with boxing witness macros
15+
- *(sacp)* [**breaking**] use AsyncFnMut for tool closures with macro workaround
16+
- *(sacp)* [**breaking**] merge pending_tasks into JrResponder and remove 'scope lifetime
17+
- *(sacp)* [**breaking**] add scoped lifetime support for MCP servers
18+
- *(sacp)* [**breaking**] add scoped lifetime to JrConnectionBuilder and JrConnection
19+
20+
### Fixed
21+
22+
- *(sacp-conductor)* use pre-built binaries in all integration tests
23+
- *(sacp-conductor)* use pre-built binaries in trace_generation test
24+
25+
### Other
26+
27+
- *(sacp)* simplify return types with impl Trait
28+
- *(sacp-conductor)* formatting and accept impl ToString for name
29+
- Merge pull request #88 from nikomatsakis/main
30+
- *(sacp)* [**breaking**] remove to_future_hack from tool_fn API
31+
1032
## [8.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v7.0.0...sacp-conductor-v8.0.0) - 2025-12-17
1133

1234
### Fixed

src/sacp-conductor/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sacp-conductor"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
edition = "2024"
55
description = "Conductor for orchestrating SACP proxy chains"
66
license = "MIT OR Apache-2.0"
@@ -12,9 +12,9 @@ categories = ["development-tools"]
1212
test-support = []
1313

1414
[dependencies]
15-
sacp = { version = "8.0.0", path = "../sacp" }
16-
sacp-tokio = { version = "8.0.0", path = "../sacp-tokio" }
17-
sacp-trace-viewer = { version = "8.0.0", path = "../sacp-trace-viewer" }
15+
sacp = { version = "9.0.0", path = "../sacp" }
16+
sacp-tokio = { version = "9.0.0", path = "../sacp-tokio" }
17+
sacp-trace-viewer = { version = "9.0.0", path = "../sacp-trace-viewer" }
1818
agent-client-protocol-schema.workspace = true
1919
anyhow.workspace = true
2020
axum.workspace = true

src/sacp-derive/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-derive-v8.0.0...sacp-derive-v9.0.0) - 2025-12-19
11+
12+
### Added
13+
14+
- *(sacp)* [**breaking**] use AsyncFnMut for tool closures with macro workaround
15+
1016
## [2.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-derive-v2.0.0...sacp-derive-v2.0.1) - 2025-12-12
1117

1218
### Other

src/sacp-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sacp-derive"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
edition = "2024"
55
description = "Derive macros for SACP JSON-RPC traits"
66
license = "MIT OR Apache-2.0"

src/sacp-rmcp/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v8.0.0...sacp-rmcp-v9.0.0) - 2025-12-19
11+
12+
### Added
13+
14+
- *(sacp)* [**breaking**] add scoped lifetime support for MCP servers
15+
16+
### Other
17+
18+
- Merge pull request #88 from nikomatsakis/main
19+
- *(sacp)* [**breaking**] remove to_future_hack from tool_fn API
20+
1021
## [8.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v7.0.0...sacp-rmcp-v8.0.0) - 2025-12-17
1122

1223
### Other

src/sacp-rmcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sacp-rmcp"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
edition = "2024"
55
description = "rmcp integration for SACP proxy components"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["acp", "agent", "proxy", "mcp", "rmcp"]
99
categories = ["development-tools"]
1010

1111
[dependencies]
12-
sacp = { version = "8.0.0", path = "../sacp" }
12+
sacp = { version = "9.0.0", path = "../sacp" }
1313
rmcp.workspace = true
1414
futures.workspace = true
1515
tokio.workspace = true

src/sacp-tee/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [9.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v8.0.0...sacp-tee-v9.0.0) - 2025-12-19
11+
12+
### Other
13+
14+
- updated the following local packages: sacp, sacp-tokio
15+
1016
## [8.0.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v7.0.0...sacp-tee-v8.0.0) - 2025-12-17
1117

1218
### Other

src/sacp-tee/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sacp-tee"
3-
version = "8.0.0"
3+
version = "9.0.0"
44
edition = "2024"
55
description = "A debugging proxy that logs all ACP traffic to a file"
66
license = "MIT OR Apache-2.0"
@@ -12,8 +12,8 @@ categories = ["development-tools", "development-tools::debugging"]
1212
anyhow.workspace = true
1313
chrono.workspace = true
1414
clap = { workspace = true, features = ["derive"] }
15-
sacp = { version = "8.0.0", path = "../sacp" }
16-
sacp-tokio = { version = "8.0.0", path = "../sacp-tokio" }
15+
sacp = { version = "9.0.0", path = "../sacp" }
16+
sacp-tokio = { version = "9.0.0", path = "../sacp-tokio" }
1717
serde = { workspace = true, features = ["derive"] }
1818
serde_json.workspace = true
1919
tokio = { workspace = true, features = ["full"] }

0 commit comments

Comments
 (0)