From 246278e39a84955af07cade6a130f699e362ec01 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Thu, 16 Jan 2025 11:47:33 +0100 Subject: [PATCH] rename to firstbeta --- scripts/changelog.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/changelog.sh b/scripts/changelog.sh index ef9b2091b3e8..703c1149fe55 100755 --- a/scripts/changelog.sh +++ b/scripts/changelog.sh @@ -30,7 +30,7 @@ Commands: This function expects the current branch to be main. Run it if you want to set main to the next minor version. - maintenancerelease + firstbeta This function is expected to be run on the branch of the last minor release. It will make sure that backports work properly @@ -160,7 +160,7 @@ function nextminor { # This function is expected to be run on the branch of the last minor release. It will make sure # that backports work properly -function maintenancerelease { +function firstbeta { # For the maintenance branch we don't want to base our changelog on the unreleased but the backported folder instead awk '{sub(/unreleasedDir: unreleased/, "unreleasedDir: backported")}1' ./.changie.yaml > temp && mv temp ./.changie.yaml @@ -187,8 +187,8 @@ function main { nextminor "${@:2}" ;; - maintenancerelease) - maintenancerelease "${@:2}" + firstbeta) + firstbeta "${@:2}" ;; *) usage