From a539c557d60bb050593bf5bd7b8f377d9470a39c Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 27 Jun 2025 12:56:06 +0300 Subject: [PATCH] scripts/update-version.py: s/Limbo/Turso/ --- scripts/update-version.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/update-version.py b/scripts/update-version.py index 92c139b5..06a896f2 100755 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 """ -Script to update version in Cargo.toml, package.json, and package-lock.json files for the Limbo project. +Script to update version in Cargo.toml, package.json, and package-lock.json files for the Turso project. This script updates all occurrences of the version in the workspace configuration, updates the JavaScript and WebAssembly bindings package.json and package-lock.json files, uses cargo update to update Cargo.lock, creates a git commit, and adds a version tag. @@ -163,7 +163,7 @@ def create_git_commit_and_tag(version): print(f"Warning: Could not add {file} to git") # Create commit - commit_message = f"Limbo {version}" + commit_message = f"Turso {version}" subprocess.run(["git", "commit", "-m", commit_message], check=True) # Create tag