Skip to content

Commit 416c002

Browse files
authored
Merge pull request #21 from symposium-dev/release-plz-2025-11-11T16-01-57Z
chore: release
2 parents 4714c92 + 95c7805 commit 416c002

File tree

12 files changed

+68
-15
lines changed

12 files changed

+68
-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.4](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v1.0.0-alpha.3...elizacp-v1.0.0-alpha.4) - 2025-11-11
11+
12+
### Other
13+
14+
- cleanup and simplify some of the logic to avoid "indirection" through
15+
1016
## [1.0.0-alpha.3](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v1.0.0-alpha.2...elizacp-v1.0.0-alpha.3) - 2025-11-09
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.3"
3+
version = "1.0.0-alpha.4"
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.3", path = "../sacp" }
18+
sacp = { version = "1.0.0-alpha.4", 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.3", path = "../sacp-tokio" }
32+
sacp-tokio = { version = "1.0.0-alpha.4", path = "../sacp-tokio" }
3333

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

src/sacp-conductor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v1.0.0-alpha.3...sacp-conductor-v1.0.0-alpha.4) - 2025-11-11
11+
12+
### Other
13+
14+
- cleanup and simplify some of the logic to avoid "indirection" through
15+
- remove ComponentProvider trait
16+
- unify Transport and Component traits with BoxFuture-returning signatures
17+
- create selective jsonrpcmsg re-export module
18+
- replace jsonrpcmsg::Message with sacp::JsonRpcMessage throughout codebase
19+
- move Component trait to sacp-proxy crate
20+
- *(sacp)* improve IntoJrTransport and Component trait impls
21+
- *(sacp-conductor)* make Component trait mirror IntoJrTransport interface
22+
- *(sacp-conductor)* introduce Component trait for better semantics
23+
1024
## [1.0.0-alpha.3](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v1.0.0-alpha.2...sacp-conductor-v1.0.0-alpha.3) - 2025-11-09
1125

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

src/sacp-proxy/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Other
13+
14+
- unify Transport and Component traits with BoxFuture-returning signatures
15+
- create selective jsonrpcmsg re-export module
16+
- replace jsonrpcmsg::Message with sacp::JsonRpcMessage throughout codebase
17+
- move Component trait to sacp-proxy crate
18+
1019
## [1.0.0-alpha.3](https://github.com/symposium-dev/symposium-acp/compare/sacp-proxy-v1.0.0-alpha.2...sacp-proxy-v1.0.0-alpha.3) - 2025-11-09
1120

1221
### 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.3"
3+
version = "1.0.0-alpha.4"
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.3", path = "../sacp" }
17+
sacp = { version = "1.0.0-alpha.4", path = "../sacp" }
1818
serde.workspace = true
1919
serde_json.workspace = true
2020
tokio.workspace = true

src/sacp-tokio/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.4](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v1.0.0-alpha.3...sacp-tokio-v1.0.0-alpha.4) - 2025-11-11
11+
12+
### Other
13+
14+
- remove ComponentProvider trait
15+
- unify Transport and Component traits with BoxFuture-returning signatures
16+
- create selective jsonrpcmsg re-export module
17+
- replace jsonrpcmsg::Message with sacp::JsonRpcMessage throughout codebase
18+
1019
## [1.0.0-alpha.3](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v1.0.0-alpha.2...sacp-tokio-v1.0.0-alpha.3) - 2025-11-09
1120

1221
### 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.3"
3+
version = "1.0.0-alpha.4"
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.3", path = "../sacp" }
12+
sacp = { version = "1.0.0-alpha.4", path = "../sacp" }
1313
futures.workspace = true
1414

1515
serde.workspace = true

src/sacp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [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
11+
12+
### Other
13+
14+
- unify Transport and Component traits with BoxFuture-returning signatures
15+
- create selective jsonrpcmsg re-export module
16+
- move Component trait to sacp-proxy crate
17+
- *(sacp)* improve IntoJrTransport and Component trait impls
18+
1019
## [1.0.0-alpha.3](https://github.com/symposium-dev/symposium-acp/compare/sacp-v1.0.0-alpha.2...sacp-v1.0.0-alpha.3) - 2025-11-09
1120

1221
### 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.3"
3+
version = "1.0.0-alpha.4"
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)