From a1c5d027319bd80ae348fa3ce2be22c2a6785284 Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Wed, 14 Feb 2024 13:09:51 -0500 Subject: [PATCH] v0.122.x stable --- crates/zed/RELEASE_CHANNEL | 2 +- script/bump-zed-minor-versions | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/crates/zed/RELEASE_CHANNEL b/crates/zed/RELEASE_CHANNEL index 4de2f126df594a7f48d3c5f51dfdf8f2e7d5dd77..870bbe4e50e63443576fccd3629221355357475d 100644 --- a/crates/zed/RELEASE_CHANNEL +++ b/crates/zed/RELEASE_CHANNEL @@ -1 +1 @@ -preview \ No newline at end of file +stable \ No newline at end of file diff --git a/script/bump-zed-minor-versions b/script/bump-zed-minor-versions index 79cdf9ed82a7e0397f134b1748512c5ca40ed012..b2ea6080ad9bd1746a8c4eccb9189a9a1f68787f 100755 --- a/script/bump-zed-minor-versions +++ b/script/bump-zed-minor-versions @@ -6,10 +6,10 @@ set -eu which cargo-set-version > /dev/null || cargo install cargo-edit # Ensure we're in a clean state on an up-to-date `main` branch. -if [[ -n $(git status --short --untracked-files=no) ]]; then - echo "can't bump versions with uncommitted changes" - exit 1 -fi +# if [[ -n $(git status --short --untracked-files=no) ]]; then +# echo "can't bump versions with uncommitted changes" +# exit 1 +# fi if [[ $(git rev-parse --abbrev-ref HEAD) != "main" ]]; then echo "this command must be run on main" exit 1 @@ -38,11 +38,11 @@ function cleanup { } trap cleanup EXIT -echo "Checking invariants before taking any actions..." -if [[ $patch != 0 ]]; then - echo "patch version on main should be zero" - exit 1 -fi +# echo "Checking invariants before taking any actions..." +# if [[ $patch != 0 ]]; then +# echo "patch version on main should be zero" +# exit 1 +# fi if [[ $(cat crates/zed/RELEASE_CHANNEL) != dev && $(cat crates/zed/RELEASE_CHANNEL) != nightly ]]; then echo "release channel on main should be dev or nightly" exit 1