Skip to content

Commit 2148ae1

Browse files
authored
Merge pull request #6 from symposium-dev/release-plz-2025-11-01T16-42-46Z
chore: release
2 parents e2d686d + e16437f commit 2148ae1

File tree

11 files changed

+108
-11
lines changed

11 files changed

+108
-11
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/elizacp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = "elizacp"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
sacp = { version = "0.1.0", path = "../sacp" }
18+
sacp = { version = "0.2.0", path = "../sacp" }
1919
agent-client-protocol-schema.workspace = true
2020
anyhow.workspace = true
2121
clap.workspace = true

src/sacp-conductor/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v0.1.1...sacp-conductor-v0.2.0) - 2025-11-04
11+
12+
### Fixed
13+
14+
- fix github url
15+
16+
### Other
17+
18+
- *(sacp-conductor)* add comprehensive crate-level documentation
19+
- *(sacp)* [**breaking**] rename json_rpc_cx to connection_cx
20+
- rename JsonRpcRequest to JrRequest
21+
- add READMEs for sacp-tokio, sacp-proxy, and sacp-conductor
22+
1023
## [0.1.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v0.1.0...sacp-conductor-v0.1.1) - 2025-10-30
1124

1225
### Fixed

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 = "0.1.1"
3+
version = "0.2.0"
44
edition = "2024"
55
description = "Conductor for orchestrating SACP proxy chains"
66
license = "MIT OR Apache-2.0"
@@ -12,8 +12,8 @@ categories = ["development-tools"]
1212
test-support = []
1313

1414
[dependencies]
15-
sacp = { version = "0.1.1", path = "../sacp" }
16-
sacp-proxy = { version = "0.1.1", path = "../sacp-proxy" }
15+
sacp = { version = "0.2.0", path = "../sacp" }
16+
sacp-proxy = { version = "0.1.2", path = "../sacp-proxy" }
1717
agent-client-protocol-schema.workspace = true
1818
anyhow.workspace = true
1919
clap.workspace = true

src/sacp-doc-test/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.0](https://github.com/symposium-dev/symposium-acp/releases/tag/sacp-doc-test-v0.1.0) - 2025-11-04
11+
12+
### Other
13+
14+
- factor "doc-test-only" code into its own crate

src/sacp-proxy/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+
## [0.1.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-proxy-v0.1.1...sacp-proxy-v0.1.2) - 2025-11-04
11+
12+
### Fixed
13+
14+
- fix github url
15+
16+
### Other
17+
18+
- add GitHub links to example files in sacp and sacp-proxy
19+
- add deny(missing_docs) and document all public APIs
20+
- *(sacp-proxy)* add comprehensive crate-level documentation
21+
- rename JsonRpcRequest to JrRequest
22+
- add READMEs for sacp-tokio, sacp-proxy, and sacp-conductor
23+
1024
## [0.1.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-proxy-v0.1.0...sacp-proxy-v0.1.1) - 2025-10-30
1125

1226
### Fixed

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 = "0.1.1"
3+
version = "0.1.2"
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
jsonrpcmsg.workspace = true
1616
rmcp.workspace = true
17-
sacp = { version = "0.1.1", path = "../sacp" }
17+
sacp = { version = "0.2.0", path = "../sacp" }
1818
serde.workspace = true
1919
serde_json.workspace = true
2020
tokio.workspace = true

src/sacp-tokio/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.1.1](https://github.com/symposium-dev/symposium-acp/releases/tag/sacp-tokio-v0.1.1) - 2025-11-04
11+
12+
### Added
13+
14+
- *(sacp-tokio)* implement JrConnectionExt trait for to_agent
15+
- create sacp-tokio crate and improve AcpAgent API
16+
17+
### Fixed
18+
19+
- fix github url
20+
21+
### Other
22+
23+
- add READMEs for sacp-tokio, sacp-proxy, and sacp-conductor

src/sacp-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["acp", "agent", "protocol", "ai", "tokio"]
99
categories = ["development-tools"]
1010

1111
[dependencies]
12-
sacp = { version = "0.1.1", path = "../sacp" }
12+
sacp = { version = "0.2.0", path = "../sacp" }
1313
futures.workspace = true
1414
serde.workspace = true
1515
serde_json.workspace = true

src/sacp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-v0.1.1...sacp-v0.2.0) - 2025-11-04
11+
12+
### Added
13+
14+
- *(sacp-tokio)* implement JrConnectionExt trait for to_agent
15+
- create sacp-tokio crate and improve AcpAgent API
16+
- *(sacp)* add AcpAgent utility and yolo-one-shot-client example
17+
18+
### Fixed
19+
20+
- fix github url
21+
22+
### Other
23+
24+
- add GitHub links to example files in sacp and sacp-proxy
25+
- *(sacp)* [**breaking**] rename json_rpc_cx to connection_cx
26+
- add deny(missing_docs) and document all public APIs
27+
- *(sacp)* improve cx cloning pattern in doc examples
28+
- *(sacp)* update crate-level documentation to match README
29+
- factor "doc-test-only" code into its own crate
30+
- make doctests build
31+
- *(sacp)* fix remaining doc test compilation errors
32+
- *(sacp)* enhance JrResponse method documentation
33+
- *(sacp)* document event loop and concurrency model
34+
- rename JsonRpcRequest to JrRequest
35+
- use util.rs
36+
- *(sacp)* move typed utilities to util module and add docs
37+
- *(sacp)* remove mention of non-existent derive macro
38+
- *(sacp)* fix doctests to compile instead of being ignored
39+
- *(sacp)* add comprehensive rustdoc for JrConnection
40+
- *(sacp)* rewrite README with streamlined quick start
41+
- *(sacp)* use stderr for yolo-one-shot-client meta output
42+
1043
## [0.1.1](https://github.com/symposium-dev/symposium-acp/compare/sacp-v0.1.0...sacp-v0.1.1) - 2025-10-30
1144

1245
### Added

0 commit comments

Comments
 (0)