From df6f0bc2a7b768b16c7c02c5e6effeed4145ac44 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Fri, 19 Sep 2025 18:11:19 +0200 Subject: [PATCH] Fix markdown list in `bump-zed-minor-versions` (#38515) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes a small markdown issue in the `bump-zed-minor-versions` script that bugged me for too long 😅 Release Notes: - N/A --- script/bump-zed-minor-versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bump-zed-minor-versions b/script/bump-zed-minor-versions index 10535ce79b12f1820986fcbaa4062def0c9ec856..536dbb6244c7e9f99c4085ca95f667e43dd67ac3 100755 --- a/script/bump-zed-minor-versions +++ b/script/bump-zed-minor-versions @@ -104,7 +104,7 @@ Prepared new Zed versions locally. You will need to push the branches and open a ${prev_minor_branch_name} \\ ${bump_main_branch_name} - echo -e "Release Notes:\n\n-N/A" | gh pr create \\ + echo -e "Release Notes:\n\n- N/A" | gh pr create \\ --title "Bump Zed to v${major}.${next_minor}" \\ --body-file "-" \\ --base main \\