From 63e9e9c1efb169d4a5663f18c91224f248e407dd Mon Sep 17 00:00:00 2001 From: lachlangrose Date: Mon, 17 Aug 2026 14:17:32 +0930 Subject: [PATCH] ci: pin map2loop/visualisation release-please versions to fix bad auto-bump Neither package has a component-scoped release-please tag yet (they were only just added to the workspace in #301/#302), so release-please had no correct anchor for their next version and fell back to misreading one of the repo's old generic v1.6.5 LoopStructural tags as their baseline, proposing 1.6.5 for both in the open release PR instead of a proper minor bump from their real current versions (map2loop 3.3.1, loopstructuralvisualisation 0.1.17). One-time release-as pins to the correct next versions; remove once that release PR has merged and each package has its own release-please tag to anchor future bumps. --- release-please-config.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 3dbcbcb2..12d40ea0 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -15,11 +15,13 @@ }, "packages/map2loop": { "release-type": "python", - "component": "map2loop" + "component": "map2loop", + "release-as": "3.4.0" }, "packages/loopstructural_visualisation": { "release-type": "python", - "component": "loopstructuralvisualisation" + "component": "loopstructuralvisualisation", + "release-as": "0.2.0" } } }