feat: bump lance to 0.38.3-beta.2 and rust to 1.90.0 (#2714)

This commit is contained in:
Jack Ye
2025-10-10 14:02:41 -07:00
committed by GitHub
parent 5a19cf15a6
commit dadb042978
5 changed files with 58 additions and 65 deletions

View File

@@ -24,6 +24,19 @@ commit = true
message = "Bump version: {current_version} → {new_version}"
commit_args = ""
# Update Cargo.lock after version bump
pre_commit_hooks = [
"""
cd python && cargo update -p lancedb-python
if git diff --quiet ../Cargo.lock; then
echo "Cargo.lock unchanged"
else
git add ../Cargo.lock
echo "Updated and staged Cargo.lock"
fi
""",
]
[tool.bumpversion.parts.pre_l]
values = ["beta", "final"]
optional_value = "final"