forked from KaTeX/KaTeX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
release.sh
executable file
·70 lines (56 loc) · 1.97 KB
/
release.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
66
67
68
69
70
#!/usr/bin/env bash
set -e -o pipefail
if [ $# -lt 1 ]; then
echo "Usage:"
echo "./release.sh <VERSION_TO_RELEASE> [NEXT_VERSION]"
echo ""
echo "Examples:"
echo " When releasing a new point release:"
echo " ./release.sh 0.6.3"
echo " When releasing a new major version:"
echo " ./release.sh 0.7.0 0.8.0"
exit
fi
VERSION=$1
NEXT_VERSION=$2
if [ -z "$NEXT_VERSION" ]; then
PROMPT="About to release $VERSION. Look good? [y/n] "
else
PROMPT="About to release $VERSION and bump master to $NEXT_VERSION-pre. Look good? [y/n] "
fi
read -r -p "$PROMPT" CONFIRM
if [ "$CONFIRM" != "y" ]; then
exit
fi
# Make a new detached HEAD
git checkout master
git pull
git checkout --detach
make setup dist
git add dist/
# Edit package.json and bower.json to the right version
sed -i "" -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' package.json
sed -i "" -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' bower.json
# Make the commit and tag, and push them.
git add package.json bower.json
git commit -n -m "v$VERSION"
git tag "v$VERSION"
git push origin "v$VERSION"
# Update npm (bower and cdnjs update automatically)
npm publish
if [ ! -z "$NEXT_VERSION" ]; then
# Go back to master to bump
git checkout master
# Edit package.json and bower.json to the right version
sed -i "" -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' package.json
sed -i "" -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' bower.json
git add package.json bower.json
git commit -n -m "Bump master to v$NEXT_VERSION-pre"
git push origin master
# Go back to the tag which has build/katex.tar.gz and build/katex.zip
git checkout "v$VERSION"
fi
echo "The automatic parts are done!"
echo "Now all that's left is to create the release on github."
echo "Visit https://github.com/Khan/KaTeX/releases/new?tag=v$VERSION to edit the release notes"
echo "Don't forget to upload build/katex.tar.gz and build/katex.zip to the release!"