global: snapshot

This commit is contained in:
nym21
2026-01-14 22:20:23 +01:00
parent 8a938c00f6
commit 467dfcc4b8
487 changed files with 17409 additions and 14029 deletions

20
scripts/python-publish.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
ROOT_DIR="$SCRIPT_DIR/.."
VERSION="$1"
if [ -z "$VERSION" ]; then
echo "Usage: $0 <version>"
exit 1
fi
cd "$ROOT_DIR/packages/brk_client"
# Update version in pyproject.toml
sed -i '' 's/^version = "[^"]*"/version = "'"$VERSION"'"/' pyproject.toml
echo "Updated pyproject.toml to $VERSION"
uv build
uv publish