From 17f97f9105b8ef849c1ab239049acd4bc9a19d10 Mon Sep 17 00:00:00 2001 From: "Gregory Markou (ai)" Date: Mon, 6 Jul 2026 13:41:55 +0200 Subject: [PATCH] fix(ci): use generic updater for Cargo.toml extra-files release-please picked its CargoToml updater for the two Cargo.toml extra-files (by filename) and crashed with "value at path package.version is not tagged" - those member crates use version.workspace = true, which isn't a literal it can edit. Pin them to the generic updater so it only touches the x-release-please-version annotated dependency-pin lines. Co-Authored-By: Claude --- release-please-config.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index ad94667..0734090 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -7,8 +7,14 @@ "component": "rompatch", "changelog-path": "CHANGELOG.md", "extra-files": [ - "crates/rompatch-gui/Cargo.toml", - "crates/rompatch/Cargo.toml", + { + "type": "generic", + "path": "crates/rompatch-gui/Cargo.toml" + }, + { + "type": "generic", + "path": "crates/rompatch/Cargo.toml" + }, { "type": "json", "path": "crates/rompatch-gui/ui/package.json",