From 996eb72e2a6481d9de1975f4867eb1c9f1e05bf0 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Mon, 14 Jul 2025 14:45:53 -0400 Subject: [PATCH] install-uv: Upgrade uv from 0.7.15 to 0.7.21. Signed-off-by: Anders Kaseorg --- scripts/lib/install-uv | 6 +++--- version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/lib/install-uv b/scripts/lib/install-uv index 3b30552771..efb004065d 100755 --- a/scripts/lib/install-uv +++ b/scripts/lib/install-uv @@ -1,12 +1,12 @@ #!/usr/bin/env bash set -eu -version=0.7.15 +version=0.7.21 arch="$(uname -m)" tarball="uv-$arch-unknown-linux-gnu.tar.gz" declare -A sha256=( - [aarch64]=a8241809c6efcf5ff649d259276dabd297a2c46e9e2f78891a1f9b8ae858e1e8 - [x86_64]=b1dc0892749e93382decbd894755be0ba1535587f0bb8333572b072d1b0f652a + [aarch64]=1dae18211605b9d00767d913da5108aea50200a88372bf8a2e1f56abdbe509f0 + [x86_64]=ca3e8898adfce5fcc891d393a079013fa4bd0d9636cef11aded8a7485bcba312 ) check_version() { diff --git a/version.py b/version.py index a73c6bdc08..eadf30c8c9 100644 --- a/version.py +++ b/version.py @@ -49,4 +49,4 @@ API_FEATURE_LEVEL = 406 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = (333, 7) # bumped 2025-07-14 to add google-re2-stubs +PROVISION_VERSION = (333, 8) # bumped 2025-07-14 to upgrade uv