Skip to content

Commit 1b8e798

Browse files
authored
ci: Fix release plz config (#1441)
1 parent ee69b0c commit 1b8e798

3 files changed

Lines changed: 19 additions & 16 deletions

File tree

.release-plz.toml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
[workspace]
2-
git_only = true
3-
git_release_latest = false
4-
git_release_name = "Schema v{{ version }}"
52
git_release_type = "auto"
6-
git_tag_name = "schema-v{{ version }}"
7-
publish = false
8-
semver_check = false
93

104
[[package]]
115
name = "agent-client-protocol-schema"
12-
git_only = false
6+
git_release_latest = false
7+
git_release_name = "Rust Crate v{{ version }}"
138
git_tag_name = "v{{ version }}"
14-
git_release_name = "v{{ version }}"
15-
publish = true
16-
semver_check = true
179

1810
[[package]]
1911
name = "agent-client-protocol-json-schema-v1"
20-
changelog_path = "schema/v1/CHANGELOG.md"
21-
git_release_latest = true
12+
git_only = true
13+
git_release_name = "Schema v{{ version }}"
14+
git_tag_name = "schema-v{{ version }}"
15+
publish = false
16+
semver_check = false
2217

2318
[[package]]
2419
name = "agent-client-protocol-json-schema-v2"
25-
changelog_path = "schema/v2/CHANGELOG.md"
26-
git_release_type = "pre"
20+
git_only = true
21+
git_release_latest = false
22+
git_release_name = "Schema v{{ version }}"
23+
git_tag_name = "schema-v{{ version }}"
24+
publish = false
2725
release = false
26+
semver_check = false

schema/v1/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ edition = "2024"
55
license = "Apache-2.0"
66
description = "Version marker for ACP v1 JSON Schema GitHub releases"
77
repository = "https://github.com/agentclientprotocol/agent-client-protocol"
8-
publish = false
8+
readme = "../../README.md"
9+
keywords = ["agent", "client", "protocol", "ai", "editor"]
10+
categories = ["development-tools", "api-bindings"]
911
include = ["/Cargo.toml", "/CHANGELOG.md", "/src/lib.rs", "/*.json"]

schema/v2/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@ edition = "2024"
55
license = "Apache-2.0"
66
description = "Version marker for ACP v2 JSON Schema artifacts"
77
repository = "https://github.com/agentclientprotocol/agent-client-protocol"
8-
publish = false
8+
readme = "../../README.md"
9+
keywords = ["agent", "client", "protocol", "ai", "editor"]
10+
categories = ["development-tools", "api-bindings"]
911
include = ["/Cargo.toml", "/CHANGELOG.md", "/src/lib.rs", "/*.json"]

0 commit comments

Comments
 (0)