From e5d7cb58d84e567945882b4c6a56bc3962034ac7 Mon Sep 17 00:00:00 2001 From: Geoffrey Thomas Date: Fri, 31 Oct 2025 22:31:44 -0400 Subject: [PATCH] Fix LLVM URL in release script --- src/release.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/release.rs b/src/release.rs index 9558361c..c45ca266 100644 --- a/src/release.rs +++ b/src/release.rs @@ -617,7 +617,7 @@ static LLVM_URL: Lazy = Lazy::new(|| { panic!("unsupported macOS architecture"); } } else if cfg!(target_os = "linux") { - Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20251029/llvm-20.1.4+20251029-gnu_only-x86_64-unknown-linux-gnu.tar.zst").unwrap() + Url::parse("https://github.com/indygreg/toolchain-tools/releases/download/toolchain-bootstrap%2F20251029/llvm-21.1.4+20251029-gnu_only-x86_64-unknown-linux-gnu.tar.zst").unwrap() } else { panic!("unsupported platform"); }