From b70c874a0e695923b81fb176ce7e49b9130d5ebc Mon Sep 17 00:00:00 2001 From: Joseph Lyons Date: Fri, 12 May 2023 14:04:36 -0400 Subject: [PATCH] Update release links --- .github/workflows/release_actions.yml | 2 +- crates/auto_update/src/auto_update.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_actions.yml b/.github/workflows/release_actions.yml index 4a9d777769..5feb29e469 100644 --- a/.github/workflows/release_actions.yml +++ b/.github/workflows/release_actions.yml @@ -14,7 +14,7 @@ jobs: content: | 📣 Zed ${{ github.event.release.tag_name }} was just released! - Restart your Zed or head to https://zed.dev/releases/latest to grab it. + Restart your Zed or head to https://zed.dev/releases/stable/latest to grab it. ```md # Changelog diff --git a/crates/auto_update/src/auto_update.rs b/crates/auto_update/src/auto_update.rs index 68d3776e1c..89b70acec7 100644 --- a/crates/auto_update/src/auto_update.rs +++ b/crates/auto_update/src/auto_update.rs @@ -102,7 +102,7 @@ fn view_release_notes(_: &ViewReleaseNotes, cx: &mut AppContext) { { format!("{server_url}/releases/preview/latest") } else { - format!("{server_url}/releases/latest") + format!("{server_url}/releases/stable/latest") }; cx.platform().open_url(&latest_release_url); }