blob: 3b4eac19e1812ac664623fcee493f00ea092acab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env bash
if [ -z "$GIT_TAG" ]; then
echo "GIT_TAG is not set, pulling from changeset"
GIT_TAG=$(jq -r '.version' src/packages/locusts/package.json)
fi
OLD_TAG=$(jq -r '.version' package.json)
echo "Bumping version from $OLD_TAG to $GIT_TAG"
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//\./:}
OLD_TAG=${OLD_TAG//\./:}
sed -i "s/$GIT_TAG/$AUTOTOOLS_TAG/g" GNUmakefile.am
# remove the snapshot from gradle
sed -i "s/-SNAPSHOT//g" gradle.properties
# bump the main package.json too
jq ".version = \"$GIT_TAG\"" package.json | sponge package.json
|