diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index 2709e267c6efcfc825f65ac1f1c5f759ba8faa64..3c227fcf28a3e2403c94591592fa92e605cf0913 100644 --- a/crates/zed/src/zed.rs +++ b/crates/zed/src/zed.rs @@ -76,7 +76,7 @@ lazy_static! { pub static ref RELEASE_CHANNEL: ReleaseChannel = match RELEASE_CHANNEL_NAME.as_str() { "dev" => ReleaseChannel::Dev, "preview" => ReleaseChannel::Preview, - "stable" => ReleaseChannel::Preview, + "stable" => ReleaseChannel::Stable, _ => panic!("invalid release channel {}", *RELEASE_CHANNEL_NAME), }; }