-
Notifications
You must be signed in to change notification settings - Fork 24
/
versionBump.sh
executable file
·31 lines (23 loc) · 1.38 KB
/
versionBump.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
# usage: sh versionBump.sh NEW_VERSION_NUMBER
# updates files containing version information in WISE and encourages user to commit them
if [ $# -eq 0 ]
then
echo "Usage: versionBump.sh NEW_VERSION_NUMBER"
exit 1
fi
export NEW_VERSION_NUMBER=$1
if [[ $NEW_VERSION_NUMBER =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "Valid version number...continuing."
else
echo "Invalid version number...must be like \"x.y.z\". Exiting without bumping version."
exit 1
fi
echo ${NEW_VERSION_NUMBER} > src/main/resources/version.txt
# Note: this assumes that WISE version is the first "version":"..." field in package.json
sed -i.bak "1,/\"version\": \".*\"/{s/\"version\": \".*\"/\"version\": \"${NEW_VERSION_NUMBER}\"/;}" package.json && rm package.json.bak
# Note: this assumes that WISE version is the first "version":"..." field in package-lock.json
sed -i.bak "1,/\"version\": \".*\"/{s/\"version\": \".*\"/\"version\": \"${NEW_VERSION_NUMBER}\"/;}" package-lock.json && rm package-lock.json.bak
# Note: this assumes that WISE version is the first <version>...</version> tag in pom.xml
sed -i.bak "1,/<version>.*<\/version>/{s/<version>.*<\/version>/<version>${NEW_VERSION_NUMBER}<\/version>/;}" pom.xml && rm pom.xml.bak
echo "Bumped version number to ${NEW_VERSION_NUMBER}.\nYou might want to commit changes now:\ngit commit -a -m \"Bumped version number to ${NEW_VERSION_NUMBER}\""