diff options
-rwxr-xr-x | contrib/version-bump | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/version-bump b/contrib/version-bump index 8df556d..3b4eac1 100755 --- a/contrib/version-bump +++ b/contrib/version-bump @@ -8,10 +8,7 @@ fi OLD_TAG=$(jq -r '.version' package.json) 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 +rg "$OLD_TAG" --files-with-matches --iglob \!pnpm-lock.yaml --iglob \!go.mod --iglob \!deno.json --iglob \!package.json --iglob \!\*.md "$(pwd)" | xargs sed -i "s/$OLD_TAG/$GIT_TAG/g" # fiddle with autotools AUTOTOOLS_TAG=${GIT_TAG//\./:} |