From ef1a7fa3fda4e89279caa1157f39b75c1b5dc36f Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Wed, 18 Dec 2024 12:09:46 -0500 Subject: [PATCH] Improve script/bump-zed-minor versions. - Follow up to: https://github.com/zed-industries/zed/pull/22170 --- script/bump-zed-minor-versions | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/script/bump-zed-minor-versions b/script/bump-zed-minor-versions index 589f79f29bfa25..641a45ae3a56e6 100755 --- a/script/bump-zed-minor-versions +++ b/script/bump-zed-minor-versions @@ -87,12 +87,8 @@ git clean -q -dff git checkout -q -b ${bump_main_branch_name} cargo set-version --package zed --bump minor cargo check -q -message="${next_minor_branch_name} dev -Release Notes: - -- N/A" -git commit -q --all --message "$message" +git commit -q --all --message "${next_minor_branch_name} dev" git checkout -q main @@ -108,7 +104,12 @@ Prepared new Zed versions locally. You will need to push the branches and open a ${prev_minor_branch_name} \\ ${bump_main_branch_name} - gh pr create --base main --head ${bump_main_branch_name} + echo -e "Release Notes:\n\n-N/A" | gh pr create \\ + --title "Bump Zed to fake" \\ + --body "-" \\ + --base main \\ + --head ${bump_main_branch_name} \\ + --web # To undo this push: