From 5843127360ce832958eea5d35277606fd221fa21 Mon Sep 17 00:00:00 2001 From: Konrad `ktoso` Malawski Date: Tue, 24 Mar 2026 17:05:50 +0900 Subject: [PATCH] No dots in messages --- scripts/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 6385bc346..c89d2c597 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -145,7 +145,7 @@ info "Build succeeded." info "Creating release commit..." git -C "$REPO_ROOT" add "$PACKAGE_SWIFT" -git -C "$REPO_ROOT" commit -m "Preparing release $RELEASE_VERSION." +git -C "$REPO_ROOT" commit -m "Preparing release $RELEASE_VERSION" info "Pushing branch '${RELEASE_BRANCH}' to origin..." git -C "$REPO_ROOT" push -u origin "$RELEASE_BRANCH" @@ -197,7 +197,7 @@ fi info "Package.swift updated for development." git -C "$REPO_ROOT" add "$PACKAGE_SWIFT" -git -C "$REPO_ROOT" commit -m "Prepare next development cycle after $RELEASE_VERSION release." +git -C "$REPO_ROOT" commit -m "Prepare next development cycle after $RELEASE_VERSION release" info "Pushing branch '${NEXT_DEV_BRANCH}' to origin..." git -C "$REPO_ROOT" push -u origin "$NEXT_DEV_BRANCH"