Adjust release script to handle uv-trampoline lockfile changes (#16971)

## Summary

Given `bump-workspace-crate-versions.py` will bump all crates, we also
need to update uv-trampoline lockfile references to those new versions
(for uv-static, uv-macros) after
https://github.com/astral-sh/uv/pull/16950.

## Test Plan

Ran release script manually and verify uv-trampoline lockfile is up to
date after the changes from bump-workspace-crate-versions.py
This commit is contained in:
samypr100 2025-12-04 12:45:18 -05:00 committed by GitHub
parent 62bf92132b
commit d3cd94ecaf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -18,3 +18,4 @@ uv run "$project_root/scripts/bump-workspace-crate-versions.py"
echo "Updating lockfile..." echo "Updating lockfile..."
cargo update -p uv cargo update -p uv
pushd crates/uv-trampoline; cargo update -p uv-trampoline; popd