From 5e20238bb5b24f985ee97913c7fdc7782baa8c00 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 11:12:36 +0800 Subject: [PATCH] Update dependency uv to v0.8.14 (#570) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- src/languages/python/uv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/languages/python/uv.rs b/src/languages/python/uv.rs index 66fff221..e70806dc 100644 --- a/src/languages/python/uv.rs +++ b/src/languages/python/uv.rs @@ -20,7 +20,7 @@ use crate::store::{CacheBucket, Store}; use crate::version; // The version range of `uv` we will install. Should update periodically. -const CUR_UV_VERSION: &str = "0.8.13"; +const CUR_UV_VERSION: &str = "0.8.14"; static UV_VERSION_RANGE: LazyLock = LazyLock::new(|| VersionReq::parse(">=0.7.0, <0.9.0").unwrap());