From c62fed71b15b0fc8fba2a613d52e5114d13e5fb8 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Fri, 13 Feb 2026 09:21:06 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci(circleci):=20simplify=20nexts?= =?UTF-8?q?v=20version=20calculation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - remove package-specific flag to streamline version calculation process - ensure consistent behavior across different release scenarios Signed-off-by: Jeremiah Russell --- .circleci/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/release.yml b/.circleci/release.yml index 93d8405..245b51f 100644 --- a/.circleci/release.yml +++ b/.circleci/release.yml @@ -451,10 +451,10 @@ jobs: CRATE_VERSION="$VERSION_OVERRIDE" echo "Result: Will release version $CRATE_VERSION (OVERRIDE)" echo "Note: Version explicitly set via crate_version parameter" - NEXTSV_VERSION=$(nextsv -bn calculate --package cull-gmail 2>/dev/null || echo "none") + NEXTSV_VERSION=$(nextsv -bn calculate 2>/dev/null || echo "none") echo " (nextsv would have calculated: $NEXTSV_VERSION)" else - CRATE_VERSION=$(nextsv -bn calculate --package cull-gmail 2>/dev/null || echo "") + CRATE_VERSION=$(nextsv -bn calculate 2>/dev/null || echo "") if [ -z "$CRATE_VERSION" ]; then CRATE_VERSION="none" echo "Result: No crate release needed"