Skip to content

Commit ecd34a3

Browse files
authored
chore: release
1 parent 946abfd commit ecd34a3

File tree

13 files changed

+98
-34
lines changed

13 files changed

+98
-34
lines changed

Cargo.lock

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

src/elizacp/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.2](https://github.com/symposium-dev/symposium-acp/compare/elizacp-v1.0.0-alpha.1...elizacp-v1.0.0-alpha.2) - 2025-11-08
11+
12+
### Other
13+
14+
- Merge pull request #16 from nikomatsakis/main
15+
- wip wip wip
16+
- [**breaking**] remove Unpin bounds and simplify transport API
17+
1018
## [1.0.0-alpha.1](https://github.com/symposium-dev/symposium-acp/releases/tag/elizacp-v1.0.0-alpha.1) - 2025-11-05
1119

1220
### Added

src/elizacp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elizacp"
3-
version = "1.0.0-alpha.1"
3+
version = "1.0.0-alpha.2"
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.1", path = "../sacp" }
18+
sacp = { version = "1.0.0-alpha.2", 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+
## [1.0.0-alpha.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v1.0.0-alpha.1...sacp-conductor-v1.0.0-alpha.2) - 2025-11-08
11+
12+
### Added
13+
14+
- *(sacp)* add convenience methods for common connection patterns
15+
16+
### Other
17+
18+
- fix doctests for API refactoring
19+
- wip wip wip
20+
- wipwipwip
21+
- [**breaking**] remove Unpin bounds and simplify transport API
22+
1023
## [0.2.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-conductor-v0.1.1...sacp-conductor-v0.2.0) - 2025-11-04
1124

1225
### 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 = "1.0.0-alpha.1"
3+
version = "1.0.0-alpha.2"
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.1", path = "../sacp" }
16-
sacp-proxy = { version = "1.0.0-alpha.1", path = "../sacp-proxy" }
17-
sacp-tokio = { version = "1.0.0-alpha.1", path = "../sacp-tokio" }
15+
sacp = { version = "1.0.0-alpha.2", path = "../sacp" }
16+
sacp-proxy = { version = "1.0.0-alpha.2", path = "../sacp-proxy" }
17+
sacp-tokio = { version = "1.0.0-alpha.2", 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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.0-alpha.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-proxy-v1.0.0-alpha.1...sacp-proxy-v1.0.0-alpha.2) - 2025-11-08
11+
12+
### Other
13+
14+
- fix doctests for API refactoring
15+
- wip wip wip
16+
- wipwipwip
17+
- introduce a `IntoJrHandler` trait
18+
- [**breaking**] remove Unpin bounds and simplify transport API
19+
1020
## [0.1.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-proxy-v0.1.1...sacp-proxy-v0.1.2) - 2025-11-04
1121

1222
### 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 = "1.0.0-alpha.1"
3+
version = "1.0.0-alpha.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 = "1.0.0-alpha.1", path = "../sacp" }
17+
sacp = { version = "1.0.0-alpha.2", 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.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-tokio-v1.0.0-alpha.1...sacp-tokio-v1.0.0-alpha.2) - 2025-11-08
11+
12+
### Other
13+
14+
- fix doctests for API refactoring
15+
- wip wip wip
16+
- [**breaking**] remove Unpin bounds and simplify transport API
17+
1018
## [1.0.0-alpha](https://github.com/symposium-dev/symposium-acp/releases/tag/sacp-tokio-v1.0.0-alpha) - 2025-11-05
1119

1220
### Added

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.1"
3+
version = "1.0.0-alpha.2"
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.1", path = "../sacp" }
12+
sacp = { version = "1.0.0-alpha.2", path = "../sacp" }
1313
futures.workspace = true
1414
jsonrpcmsg.workspace = true
1515
serde.workspace = true

src/sacp/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0-alpha.2](https://github.com/symposium-dev/symposium-acp/compare/sacp-v1.0.0-alpha.1...sacp-v1.0.0-alpha.2) - 2025-11-08
11+
12+
### Added
13+
14+
- *(sacp)* add convenience methods for common connection patterns
15+
- *(sacp)* add IntoJrConnectionTransport trait and ByteStreamTransport
16+
17+
### Other
18+
19+
- fix doctests for API refactoring
20+
- wip wip wip
21+
- wipwipwip
22+
- introduce a `IntoJrHandler` trait
23+
- [**breaking**] remove Unpin bounds and simplify transport API
24+
- *(sacp)* clarify id: None semantics and remove phase references
25+
- *(sacp)* split actors into protocol and transport layers
26+
1027
## [0.2.0](https://github.com/symposium-dev/symposium-acp/compare/sacp-v0.1.1...sacp-v0.2.0) - 2025-11-04
1128

1229
### Added

0 commit comments

Comments
 (0)