element-web/release.sh

61 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-03-17 11:45:26 +01:00
#
# 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 12:07:05 +01:00
for i in matrix-js-sdk
do
2020-03-04 12:53:01 +01:00
echo "Checking version of $i..."
2020-02-14 12:07:05 +01:00
depver=`cat package.json | jq -r .dependencies[\"$i\"]`
latestver=`yarn info -s $i dist-tags.next`
if [ "$depver" != "$latestver" ]
then
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 12:07:05 +01:00
read resp
if [ "$resp" != "u" ] && [ "$resp" != "c" ]
2020-02-14 12:07:05 +01:00
then
echo "Aborting."
2020-02-14 12:07:05 +01:00
exit 1
fi
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 12:07:05 +01:00
fi
done
./node_modules/matrix-js-sdk/release.sh -z "$@"
release="${1#v}"
prerelease=0
# We check if this build is a prerelease by looking to
# see if the version has a hyphen in it. Crude,
# but semver doesn't support postreleases so anything
# with a hyphen is a prerelease.
echo $release | grep -q '-' && prerelease=1
if [ $prerelease -eq 0 ]
then
# For a release, reset SDK deps back to the `develop` branch.
for i in matrix-js-sdk
do
echo "Resetting $i to develop branch..."
yarn add github:matrix-org/$i#develop
git add -u
git commit -m "Reset $i back to develop branch"
done
git push origin develop
fi