Skip to content

Commit

Permalink
Remove main push from bump-zed-minor-versions script
Browse files Browse the repository at this point in the history
  • Loading branch information
mgsloan committed Dec 17, 2024
1 parent c86cf2c commit 5c815f7
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions script/bump-zed-minor-versions
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ minor_branch_name="v${major}.${minor}.x"
prev_minor_branch_name="v${major}.${prev_minor}.x"
next_minor_branch_name="v${major}.${next_minor}.x"
preview_tag_name="v${major}.${minor}.${patch}-pre"
bump_main_branch_name="set-minor-version-to-${major}.${next_minor}"

git fetch origin ${prev_minor_branch_name}:${prev_minor_branch_name}
git fetch origin --tags
Expand Down Expand Up @@ -83,29 +84,39 @@ git tag ${preview_tag_name}
echo "Preparing main for version ${next_minor_branch_name}..."
git checkout -q main
git clean -q -dff
old_main_sha=$(git rev-parse HEAD)
git checkout -q -b ${bump_main_branch_name}
cargo set-version --package zed --bump minor
cargo check -q
git commit -q --all --message "${next_minor_branch_name} dev"
message="${next_minor_branch_name} dev
Release Notes:
- N/A"
git commit -q --all --message "$message"

git checkout -q main

cat <<MESSAGE
Prepared new Zed versions locally.
Prepared new Zed versions locally, and opened the new PR for ${bump_main_branch_name} in your browser.
To push this:
git push origin \\
${preview_tag_name} \\
${stable_tag_name} \\
${minor_branch_name} \\
${prev_minor_branch_name} \\
main
${prev_minor_branch_name}
git checkout ${bump_main_branch_name}
gh pr create --fill --web
To undo this:
git reset --hard ${old_main_sha} && git push -f . \\
git push -f . \\
:${preview_tag_name} \\
:${stable_tag_name} \\
:${minor_branch_name} \\
:${bump_main_branch_name} \\
${old_prev_minor_sha}:${prev_minor_branch_name}
MESSAGE

0 comments on commit 5c815f7

Please sign in to comment.