Skip to content

Commit fda2a1c

Browse files
authored
Merge pull request #125 from nikomatsakis/release-11.0
chore: set release versions (11.0.0, elizacp 12.0.0)
2 parents 49510a0 + 0bd069b commit fda2a1c

10 files changed

Lines changed: 27 additions & 27 deletions

File tree

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 = "11.0.0-alpha.1"
3+
version = "12.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 = "11.0.0-alpha.1", path = "../sacp" }
19+
sacp = { version = "11.0.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 = "11.0.0-alpha.1", path = "../sacp-tokio" }
35+
sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" }
3636
ratatui = "0.30.0"
3737
crossterm = "0.29.0"
3838

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

1818
[dependencies]
19-
sacp = { version = "11.0.0-alpha.1", path = "../sacp" }
20-
sacp-tokio = { version = "11.0.0-alpha.1", path = "../sacp-tokio" }
21-
sacp-trace-viewer = { version = "11.0.0-alpha.1", path = "../sacp-trace-viewer" }
19+
sacp = { version = "11.0.0", path = "../sacp" }
20+
sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" }
21+
sacp-trace-viewer = { version = "11.0.0", path = "../sacp-trace-viewer" }
2222
agent-client-protocol-schema.workspace = true
2323
anyhow.workspace = true
2424
axum.workspace = true

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 = "11.0.0-alpha.1"
3+
version = "11.0.0"
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 = "11.0.0-alpha.1", path = "../sacp" }
13-
sacp-conductor = { version = "11.0.0-alpha.1", path = "../sacp-conductor" }
14-
sacp-rmcp = { version = "11.0.0-alpha.1", path = "../sacp-rmcp" }
15-
sacp-tokio = { version = "11.0.0-alpha.1", path = "../sacp-tokio" }
12+
sacp = { version = "11.0.0", path = "../sacp" }
13+
sacp-conductor = { version = "11.0.0", path = "../sacp-conductor" }
14+
sacp-rmcp = { version = "11.0.0", path = "../sacp-rmcp" }
15+
sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" }
1616

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

src/sacp-derive/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-derive"
3-
version = "11.0.0-alpha.1"
3+
version = "11.0.0"
44
edition = "2024"
55
description = "Derive macros for SACP JSON-RPC traits"
66
license = "MIT OR Apache-2.0"

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

src/sacp-test/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-test"
3-
version = "11.0.0-alpha.1"
3+
version = "11.0.0"
44
edition = "2024"
55
description = "Test utilities and mock implementations for SACP"
66
license = "MIT OR Apache-2.0"
@@ -10,9 +10,9 @@ name = "mcp-echo-server"
1010
path = "src/bin/mcp_echo_server.rs"
1111

1212
[dependencies]
13-
sacp = { version = "11.0.0-alpha.1", path = "../sacp" }
14-
sacp-tokio = { version = "11.0.0-alpha.1", path = "../sacp-tokio" }
15-
yopo = { version = "11.0.0-alpha.1", path = "../yopo" }
13+
sacp = { version = "11.0.0", path = "../sacp" }
14+
sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" }
15+
yopo = { version = "11.0.0", path = "../yopo" }
1616
rmcp = { workspace = true, features = ["server"] }
1717
schemars.workspace = true
1818

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

1515
serde.workspace = true

src/sacp-trace-viewer/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-trace-viewer"
3-
version = "11.0.0-alpha.1"
3+
version = "11.0.0"
44
edition = "2024"
55
description = "Interactive sequence diagram viewer for SACP trace files"
66
license = "MIT OR Apache-2.0"

src/sacp/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"
3-
version = "11.0.0-alpha.1"
3+
version = "11.0.0"
44
edition = "2024"
55
description = "Core protocol types and traits for SACP (Symposium's extensions to ACP)"
66
license = "MIT OR Apache-2.0"
@@ -10,7 +10,7 @@ categories = ["development-tools"]
1010

1111
[dependencies]
1212
agent-client-protocol-schema.workspace = true
13-
sacp-derive = { version = "11.0.0-alpha.1", path = "../sacp-derive" }
13+
sacp-derive = { version = "11.0.0", path = "../sacp-derive" }
1414
anyhow.workspace = true
1515
boxfnonce.workspace = true
1616
futures.workspace = true

src/yopo/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yopo"
3-
version = "11.0.0-alpha.1"
3+
version = "11.0.0"
44
edition = "2024"
55
description = "YOPO (You Only Prompt Once) - A simple ACP client for one-shot prompts"
66
license = "MIT OR Apache-2.0"
@@ -14,8 +14,8 @@ name = "yopo"
1414
path = "src/main.rs"
1515

1616
[dependencies]
17-
sacp = { version = "11.0.0-alpha.1", path = "../sacp" }
18-
sacp-tokio = { version = "11.0.0-alpha.1", path = "../sacp-tokio" }
17+
sacp = { version = "11.0.0", path = "../sacp" }
18+
sacp-tokio = { version = "11.0.0", path = "../sacp-tokio" }
1919
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
2020
tracing.workspace = true
2121
tracing-subscriber.workspace = true

0 commit comments

Comments
 (0)