Skip to content

Commit da09f06

Browse files
authored
Merge pull request #110 from symposium-dev/release-plz-2025-12-31T17-34-21Z
chore: release
2 parents a62f45f + 92fa7e6 commit da09f06

File tree

17 files changed

+74
-25
lines changed

17 files changed

+74
-25
lines changed

src/elizacp/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+
## [11.0.0](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v10.0.0...elizacp-v11.0.0) - 2025-12-31
11+
12+
### Added
13+
14+
- *(elizacp)* implement Eliza algorithm based on the original style
15+
1016
## [10.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v10.0.0-alpha.3...elizacp-v10.0.0-alpha.4) - 2025-12-30
1117

1218
### Added

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 = "10.0.0"
3+
version = "11.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 = "10.0.0", path = "../sacp" }
19+
sacp = { version = "10.1.0", path = "../sacp" }
2020
agent-client-protocol-schema.workspace = true
2121
anyhow.workspace = true
2222
clap.workspace = true
@@ -32,7 +32,7 @@ tokio-util.workspace = true
3232
tracing.workspace = true
3333
tracing-subscriber.workspace = true
3434
uuid.workspace = true
35-
sacp-tokio = { version = "10.0.0", path = "../sacp-tokio" }
35+
sacp-tokio = { version = "10.1.0", path = "../sacp-tokio" }
3636
ratatui = "0.30.0"
3737
crossterm = "0.29.0"
3838

src/sacp-conductor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [10.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v10.0.0...sacp-conductor-v10.0.1) - 2025-12-31
11+
12+
### Other
13+
14+
- Merge pull request #109 from nikomatsakis/ci-binaries
15+
- add binary releases for CLI tools
16+
1017
## [10.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v10.0.0-alpha.3...sacp-conductor-v10.0.0-alpha.4) - 2025-12-30
1118

1219
### Added

src/sacp-conductor/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-conductor"
3-
version = "10.0.0"
3+
version = "10.0.1"
44
edition = "2024"
55
description = "Conductor for orchestrating SACP proxy chains"
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
test-support = []
1717

1818
[dependencies]
19-
sacp = { version = "10.0.0", path = "../sacp" }
20-
sacp-tokio = { version = "10.0.0", path = "../sacp-tokio" }
19+
sacp = { version = "10.1.0", path = "../sacp" }
20+
sacp-tokio = { version = "10.1.0", path = "../sacp-tokio" }
2121
sacp-trace-viewer = { version = "10.0.0", path = "../sacp-trace-viewer" }
2222
agent-client-protocol-schema.workspace = true
2323
anyhow.workspace = true

src/sacp-cookbook/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+
## [10.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-cookbook-v10.0.0...sacp-cookbook-v10.0.1) - 2025-12-31
11+
12+
### Other
13+
14+
- updated the following local packages: sacp, sacp-tokio, sacp-conductor, sacp-rmcp
15+
1016
## [10.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-cookbook-v10.0.0-alpha.3...sacp-cookbook-v10.0.0-alpha.4) - 2025-12-30
1117

1218
### Added

src/sacp-cookbook/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sacp-cookbook"
3-
version = "10.0.0"
3+
version = "10.0.1"
44
edition = "2024"
55
description = "Cookbook of common patterns for building ACP components"
66
license = "MIT OR Apache-2.0"
@@ -9,10 +9,10 @@ keywords = ["acp", "agent", "proxy", "mcp", "cookbook"]
99
categories = ["development-tools"]
1010

1111
[dependencies]
12-
sacp = { version = "10.0.0", path = "../sacp" }
13-
sacp-conductor = { version = "10.0.0", path = "../sacp-conductor" }
14-
sacp-rmcp = { version = "10.0.0", path = "../sacp-rmcp" }
15-
sacp-tokio = { version = "10.0.0", path = "../sacp-tokio" }
12+
sacp = { version = "10.1.0", path = "../sacp" }
13+
sacp-conductor = { version = "10.0.1", path = "../sacp-conductor" }
14+
sacp-rmcp = { version = "10.0.1", path = "../sacp-rmcp" }
15+
sacp-tokio = { version = "10.1.0", path = "../sacp-tokio" }
1616

1717
# Re-export common dependencies needed by cookbook examples
1818
rmcp.workspace = true

src/sacp-rmcp/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+
## [10.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v10.0.0...sacp-rmcp-v10.0.1) - 2025-12-31
11+
12+
### Other
13+
14+
- updated the following local packages: sacp
15+
1016
## [10.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-rmcp-v10.0.0-alpha.3...sacp-rmcp-v10.0.0-alpha.4) - 2025-12-30
1117

1218
### 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 = "10.0.0"
3+
version = "10.0.1"
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 = "10.0.0", path = "../sacp" }
12+
sacp = { version = "10.1.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+
## [10.0.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v10.0.0...sacp-tee-v10.0.1) - 2025-12-31
11+
12+
### Other
13+
14+
- add binary releases for CLI tools
15+
1016
## [10.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-tee-v10.0.0-alpha.3...sacp-tee-v10.0.0-alpha.4) - 2025-12-30
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 = "10.0.0"
3+
version = "10.0.1"
44
edition = "2024"
55
description = "A debugging proxy that logs all ACP traffic to a file"
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ path = "src/main.rs"
1616
anyhow.workspace = true
1717
chrono.workspace = true
1818
clap = { workspace = true, features = ["derive"] }
19-
sacp = { version = "10.0.0", path = "../sacp" }
20-
sacp-tokio = { version = "10.0.0", path = "../sacp-tokio" }
19+
sacp = { version = "10.1.0", path = "../sacp" }
20+
sacp-tokio = { version = "10.1.0", path = "../sacp-tokio" }
2121
serde = { workspace = true, features = ["derive"] }
2222
serde_json.workspace = true
2323
tokio = { workspace = true, features = ["full"] }

0 commit comments

Comments
 (0)