aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/version-bump
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/version-bump')
-rwxr-xr-xcontrib/version-bump3
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/version-bump b/contrib/version-bump
index 09ca6a9..8df556d 100755
--- a/contrib/version-bump
+++ b/contrib/version-bump
@@ -10,6 +10,9 @@ echo "Bumping version from $OLD_TAG to $GIT_TAG"
rg "$OLD_TAG" --files-with-matches --iglob \!\*lock\* --iglob \!go.mod --iglob \!deno.json --iglob \!package.json --iglob \!\*.md "$(pwd)" | xargs sed -i "s/$OLD_TAG/$GIT_TAG/g"
+# Bump the ruby lockfile too
+sed -i "s/$OLD_TAG/$GIT_TAG/g" Gemfile.lock
+
# fiddle with autotools
AUTOTOOLS_TAG=${GIT_TAG//\./:}
OLD_TAG=${OLD_TAG//\./:}