From 30057e7d38fd398e30ce6f9c72d34717ed3687ac Mon Sep 17 00:00:00 2001 From: Stefan Steiner Date: Mon, 18 May 2026 11:18:46 -0700 Subject: [PATCH] ci: force generic updater for Cargo.toml extra-files Bare string entries in extra-files trigger GenericToml (JSONPath-based) which ignores x-release-please-version annotation comments. Explicitly set type: "generic" so the annotation-based updater processes these. --- release-please-config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 43cb5e5..bfb9ee2 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -27,9 +27,9 @@ "component": "hyper-api-rust", "changelog-path": "CHANGELOG.md", "extra-files": [ - "Cargo.toml", - "hyperdb-api-core/Cargo.toml", - "hyperdb-api/Cargo.toml", + { "type": "generic", "path": "Cargo.toml" }, + { "type": "generic", "path": "hyperdb-api-core/Cargo.toml" }, + { "type": "generic", "path": "hyperdb-api/Cargo.toml" }, { "type": "json", "path": "hyperdb-mcp/npm/package.json",