Skip to content

Commit dfad337

Browse files
authored
Merge pull request #27 from symposium-dev/release-plz-2025-11-11T23-52-25Z
chore: release
2 parents 1d49fcf + cf1ef58 commit dfad337

File tree

12 files changed

+57
-15
lines changed

12 files changed

+57
-15
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+
## [1.0.0-alpha.6](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v1.0.0-alpha.5...elizacp-v1.0.0-alpha.6) - 2025-11-11
11+
12+
### Other
13+
14+
- updated the following local packages: sacp, sacp-tokio
15+
1016
## [1.0.0-alpha.5](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v1.0.0-alpha.4...elizacp-v1.0.0-alpha.5) - 2025-11-11
1117

1218
### 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 = "1.0.0-alpha.5"
3+
version = "1.0.0-alpha.6"
44
edition = "2024"
55
description = "Classic Eliza chatbot as an ACP agent for testing"
66
license = "MIT OR Apache-2.0"
@@ -15,7 +15,7 @@ name = "elizacp"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
sacp = { version = "1.0.0-alpha.4", path = "../sacp" }
18+
sacp = { version = "1.0.0-alpha.5", path = "../sacp" }
1919
agent-client-protocol-schema.workspace = true
2020
anyhow.workspace = true
2121
clap.workspace = true
@@ -29,7 +29,7 @@ tokio-util.workspace = true
2929
tracing.workspace = true
3030
tracing-subscriber.workspace = true
3131
uuid.workspace = true
32-
sacp-tokio = { version = "1.0.0-alpha.5", path = "../sacp-tokio" }
32+
sacp-tokio = { version = "1.0.0-alpha.6", path = "../sacp-tokio" }
3333

3434
[dev-dependencies]
3535
expect-test.workspace = true

src/sacp-conductor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.7](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v1.0.0-alpha.6...sacp-conductor-v1.0.0-alpha.7) - 2025-11-11
11+
12+
### Other
13+
14+
- Merge pull request #26 from nikomatsakis/main
15+
- [**breaking**] make Component trait ergonomic with async fn and introduce DynComponent
16+
- [**breaking**] make Component the primary trait with Transport as blanket impl
17+
1018
## [1.0.0-alpha.6](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v1.0.0-alpha.5...sacp-conductor-v1.0.0-alpha.6) - 2025-11-11
1119

1220
### Added

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 = "1.0.0-alpha.6"
3+
version = "1.0.0-alpha.7"
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 = "1.0.0-alpha.4", path = "../sacp" }
16-
sacp-proxy = { version = "1.0.0-alpha.4", path = "../sacp-proxy" }
17-
sacp-tokio = { version = "1.0.0-alpha.5", path = "../sacp-tokio" }
15+
sacp = { version = "1.0.0-alpha.5", path = "../sacp" }
16+
sacp-proxy = { version = "1.0.0-alpha.5", path = "../sacp-proxy" }
17+
sacp-tokio = { version = "1.0.0-alpha.6", path = "../sacp-tokio" }
1818
agent-client-protocol-schema.workspace = true
1919
anyhow.workspace = true
2020
chrono.workspace = true

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

1218
### Other

src/sacp-proxy/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-proxy"
3-
version = "1.0.0-alpha.4"
3+
version = "1.0.0-alpha.5"
44
edition = "2024"
55
description = "Framework for building SACP proxy components"
66
license = "MIT OR Apache-2.0"
@@ -14,7 +14,7 @@ futures.workspace = true
1414
fxhash.workspace = true
1515

1616
rmcp.workspace = true
17-
sacp = { version = "1.0.0-alpha.4", path = "../sacp" }
17+
sacp = { version = "1.0.0-alpha.5", path = "../sacp" }
1818
serde.workspace = true
1919
serde_json.workspace = true
2020
tokio.workspace = true

src/sacp-tokio/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.6](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v1.0.0-alpha.5...sacp-tokio-v1.0.0-alpha.6) - 2025-11-11
11+
12+
### Other
13+
14+
- Merge pull request #26 from nikomatsakis/main
15+
- [**breaking**] make Component trait ergonomic with async fn and introduce DynComponent
16+
- [**breaking**] make Component the primary trait with Transport as blanket impl
17+
1018
## [1.0.0-alpha.5](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v1.0.0-alpha.4...sacp-tokio-v1.0.0-alpha.5) - 2025-11-11
1119

1220
### Other

src/sacp-tokio/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-tokio"
3-
version = "1.0.0-alpha.5"
3+
version = "1.0.0-alpha.6"
44
edition = "2024"
55
description = "Tokio-based utilities for SACP (Symposium's extensions to ACP)"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["acp", "agent", "protocol", "ai", "tokio"]
99
categories = ["development-tools"]
1010

1111
[dependencies]
12-
sacp = { version = "1.0.0-alpha.4", path = "../sacp" }
12+
sacp = { version = "1.0.0-alpha.5", path = "../sacp" }
1313
futures.workspace = true
1414

1515
serde.workspace = true

src/sacp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.5](https://github.com/symposium-dev/symposium-acp/compare/sacp-v1.0.0-alpha.4...sacp-v1.0.0-alpha.5) - 2025-11-11
11+
12+
### Other
13+
14+
- [**breaking**] make Component trait ergonomic with async fn and introduce DynComponent
15+
- clarify that Component should be implemented instead of Transport
16+
- [**breaking**] make Component the primary trait with Transport as blanket impl
17+
1018
## [1.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-v1.0.0-alpha.3...sacp-v1.0.0-alpha.4) - 2025-11-11
1119

1220
### Other

src/sacp/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"
3-
version = "1.0.0-alpha.4"
3+
version = "1.0.0-alpha.5"
44
edition = "2024"
55
description = "Core protocol types and traits for SACP (Symposium's extensions to ACP)"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)