-
Notifications
You must be signed in to change notification settings - Fork 6
/
bump_version.sh
executable file
·65 lines (59 loc) · 2.12 KB
/
bump_version.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
# bump_version.sh (assessment|project|templates|tools) (show|major|minor|patch|prerelease|build)
set -o nounset
set -o errexit
set -o pipefail
HELP_INFORMATION="bump_version.sh (assessment|project|templates|tools) (show|major|minor|patch|prerelease|build|finalize)"
if [ $# -ne 2 ]; then
echo "$HELP_INFORMATION"
else
case $1 in
project)
VERSION_FILE=src/_version.py
old_version=$(sed -n "s/^__version__ = \"\(.*\)\"$/\1/p" "$VERSION_FILE")
;;
assessment | templates | tools)
VERSION_FILE=src/$1/_version.py
old_version=$(sed -n "s/^__version__ = \"\(.*\)\"$/\1/p" "$VERSION_FILE")
;;
*)
echo "$HELP_INFORMATION"
exit
;;
esac
# Comment out periods so they are interpreted as periods and don't
# just match any character
old_version_regex=${old_version//\./\\\.}
case $2 in
major | minor | patch | prerelease | build)
new_version=$(python -c "import semver; print(semver.bump_$2('$old_version'))")
echo Changing "$1" version from "$old_version" to "$new_version"
# A temp file is used to provide compatability with macOS development
# as a result of macOS using the BSD version of sed
tmp_file=/tmp/version.$$
sed "s/$old_version_regex/$new_version/" "$VERSION_FILE" > $tmp_file
mv "$tmp_file" "$VERSION_FILE"
git add "$VERSION_FILE"
git commit -m"Bump $1 version from $old_version to $new_version"
git push
;;
finalize)
new_version=$(python -c "import semver; print(semver.finalize_version('$old_version'))")
echo Changing "$1" version from "$old_version" to "$new_version"
# A temp file is used to provide compatability with macOS development
# as a result of macOS using the BSD version of sed
tmp_file=/tmp/version.$$
sed "s/$old_version_regex/$new_version/" "$VERSION_FILE" > $tmp_file
mv "$tmp_file" "$VERSION_FILE"
git add "$VERSION_FILE"
git commit -m"Bump $1 version from $old_version to $new_version"
git push
;;
show)
echo "$old_version"
;;
*)
echo "$HELP_INFORMATION"
;;
esac
fi