KaTeX/release.sh
Emily Eisenberg 225baffef4 And make the release script actually work again.
Summary: The previous commit made the `sed` lines do the same thing on mac and
linux. Unfortunately they didn't actually work. Whoops.

Test Plan:
 - Run `./release.sh` a couple times and become horribly confused before
   realizing what's going on.

@kevinb
2017-01-06 19:47:47 -08:00

75 lines
2.2 KiB
Bash
Executable File

#!/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 (see
# http://stackoverflow.com/a/22084103 for why we need the .bak file to make
# this mac & linux compatible)
sed -i.bak -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' package.json
sed -i.bak -E 's|"version": "[^"]+",|"version": "'$VERSION'",|' bower.json
rm -f package.json.bak bower.json.bak
# 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.bak -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' package.json
sed -i.bak -E 's|"version": "[^"]+",|"version": "'$NEXT_VERSION'-pre",|' bower.json
rm -f package.json.bak bower.json.bak
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!"