mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:14:52 +00:00

Summary -- This reduces the page size of GraphQL queries (https://github.com/zanieb/rooster/pull/85), hopefully helping with some of the 502s we've been hitting. Test Plan -- I ran the release script, and it succeeded after failing several times on the old rooster version.
18 lines
394 B
Bash
Executable file
18 lines
394 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Prepare for a release
|
|
#
|
|
# All additional options are passed to `rooster release`
|
|
set -eu
|
|
|
|
export UV_PREVIEW=1
|
|
|
|
script_root="$(realpath "$(dirname "$0")")"
|
|
project_root="$(dirname "$script_root")"
|
|
|
|
echo "Updating metadata with rooster..."
|
|
cd "$project_root"
|
|
uvx --python 3.12 --isolated -- \
|
|
rooster@0.1.0 release "$@"
|
|
|
|
echo "Updating lockfile..."
|
|
cargo update -p ruff
|