From 8379b8aabf5ad5a67c1a8822aed38cfeb157e3b6 Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Sat, 25 Oct 2025 14:10:15 +0200 Subject: [PATCH] Fix the version update for BC breaking changes The refresh script was computing the level variable based on the kind of changes in the changelog of the unreleased version, and was later reinitializing the variable, losing that info. --- .github/workflows/bin/refresh | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/bin/refresh b/.github/workflows/bin/refresh index 80b515427..82e9bfdfd 100755 --- a/.github/workflows/bin/refresh +++ b/.github/workflows/bin/refresh @@ -265,7 +265,6 @@ foreach ($services as $service => $hasChange) { exit(1); } $parts = explode('.', $lastPackageVersion); - $level = 1; if (0 === (int) $parts[0]) { $level = min(2, $level + 1); }