From 371502df62fa826cff1ee4fc8fb034d6e82cc18d Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 6 Aug 2025 21:23:34 +0100 Subject: [PATCH] Upgrade `cargo-dist` to add `UV_INSTALLER_URL` to PowerShell installer (#15114) ## Summary This ensures that `UV_INSTALLER_URL` is present in the PowerShell installer. --- .github/workflows/release.yml | 2 +- dist-workspace.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ea118d88..1fae60ff3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,7 @@ jobs: # we specify bash to get pipefail; it guards against the `curl` command # failing. otherwise `sh` won't catch that `curl` returned non-0 shell: bash - run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.7-prerelease.2/cargo-dist-installer.sh | sh" + run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/cargo-dist/releases/download/v0.28.7/cargo-dist-installer.sh | sh" - name: Cache dist uses: actions/upload-artifact@6027e3dd177782cd8ab9af838c04fd81a07f1d47 with: diff --git a/dist-workspace.toml b/dist-workspace.toml index 15b703d98..60e3001d3 100644 --- a/dist-workspace.toml +++ b/dist-workspace.toml @@ -4,7 +4,7 @@ members = ["cargo:."] # Config for 'dist' [dist] # The preferred dist version to use in CI (Cargo.toml SemVer syntax) -cargo-dist-version = "0.28.7-prerelease.2" +cargo-dist-version = "0.28.7" # make a package being included in our releases opt-in instead of opt-out dist = false # CI backends to support