2016-03-17 10:45:26 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Script to perform a release of matrix-react-sdk.
|
|
|
|
#
|
|
|
|
# Requires githib-changelog-generator; to install, do
|
|
|
|
# pip install git+https://github.com/matrix-org/github-changelog-generator.git
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd `dirname $0`
|
|
|
|
|
2020-02-14 11:07:05 +00:00
|
|
|
for i in matrix-js-sdk
|
|
|
|
do
|
|
|
|
depver=`cat package.json | jq -r .dependencies[\"$i\"]`
|
|
|
|
latestver=`yarn info -s $i dist-tags.next`
|
|
|
|
if [ "$depver" != "$latestver" ]
|
|
|
|
then
|
2020-02-14 12:10:08 +00:00
|
|
|
echo "The latest version of $i is $latestver but package.json depends on $depver."
|
|
|
|
echo -n "Type 'u' to auto-upgrade, 'c' to continue anyway, or 'a' to abort:"
|
2020-02-14 11:07:05 +00:00
|
|
|
read resp
|
2020-02-14 12:10:08 +00:00
|
|
|
if [ "$resp" != "u" ] && [ "$resp" != "c" ]
|
2020-02-14 11:07:05 +00:00
|
|
|
then
|
2020-02-14 12:10:08 +00:00
|
|
|
echo "Aborting."
|
2020-02-14 11:07:05 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2020-02-14 12:10:08 +00:00
|
|
|
if [ "$resp" == "u" ]
|
|
|
|
then
|
|
|
|
echo "Upgrading $i to $latestver..."
|
|
|
|
yarn add -E $i@$latestver
|
|
|
|
git add -u
|
|
|
|
# The `-e` flag opens the editor and gives you a chance to check
|
|
|
|
# the upgrade for correctness.
|
|
|
|
git commit -m "Upgrade $i to $latestver" -e
|
|
|
|
fi
|
2020-02-14 11:07:05 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2016-03-23 14:35:23 +00:00
|
|
|
exec ./node_modules/matrix-js-sdk/release.sh -z "$@"
|