aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/version-bump
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-10-30 15:08:36 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-10-30 15:08:36 -0500
commite707e58d1eb0fe9258df9e9cebe8772e62fe3335 (patch)
treee88a1bfa7f13209aeaa80d7233dcd98bc4879cd1 /contrib/version-bump
parentruby: here goes nothing? (diff)
downloadlocusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar.gz
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar.bz2
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar.lz
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar.xz
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.tar.zst
locusts-e707e58d1eb0fe9258df9e9cebe8772e62fe3335.zip
version bump the gemfile lock too
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-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//\./:}