X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=release.sh;h=1ca70754d25ec5eaa8118c0867063cad2360a660;hb=ad826f06da385dfc44e88fc64d5ccb0b9ceae79e;hp=646034a69e1b920256b7ea280282a3c05b08b516;hpb=8629c2e208930414f542435509594df051be2009;p=i3%2Fi3 diff --git a/release.sh b/release.sh index 646034a6..1ca70754 100755 --- a/release.sh +++ b/release.sh @@ -1,9 +1,9 @@ #!/bin/zsh # This script is used to prepare a new release of i3. -export RELEASE_VERSION="4.10.1" -export PREVIOUS_VERSION="4.10" -export RELEASE_BRANCH="next" +export RELEASE_VERSION="4.10.3" +export PREVIOUS_VERSION="4.10.2" +export RELEASE_BRANCH="master" if [ ! -e "../i3.github.io" ] then @@ -12,6 +12,12 @@ then exit 1 fi +if ! (cd ../i3.github.io && git pull) +then + echo "Could not update ../i3.github.io repository" + exit 1 +fi + if [ ! -e "RELEASE-NOTES-${RELEASE_VERSION}" ] then echo "RELEASE-NOTES-${RELEASE_VERSION} not found." @@ -74,14 +80,20 @@ if [ "${RELEASE_BRANCH}" = "master" ]; then git checkout master git merge --no-ff release-${RELEASE_VERSION} -m "Merge branch 'release-${RELEASE_VERSION}'" git checkout next - git merge --no-ff master -m "Merge branch 'master' into next" + git merge --no-ff -X ours master -m "Merge branch 'master' into next" else git checkout next git merge --no-ff release-${RELEASE_VERSION} -m "Merge branch 'release-${RELEASE_VERSION}'" git checkout master - git merge --no-ff next -m "Merge branch 'next' into master" + git merge --no-ff -X theirs next -m "Merge branch 'next' into master" fi +git remote remove origin +git remote add origin git@github.com:i3/i3.git +git config --add remote.origin.push "+refs/tags/*:refs/tags/*" +git config --add remote.origin.push "+refs/heads/next:refs/heads/next" +git config --add remote.origin.push "+refs/heads/master:refs/heads/master" + ################################################################################ # Section 2: Debian packaging ################################################################################ @@ -92,6 +104,7 @@ mkdir debian # Copy over the changelog because we expect it to be locally modified in the # start directory. cp "${STARTDIR}/debian/changelog" i3/debian/changelog +(cd i3 && git add debian/changelog && git commit -m 'Update debian/changelog') cat > ${TMPDIR}/Dockerfile <email.txt < +To: i3-announce@i3.zekjur.net +Subject: i3 v${RELEASE_VERSION} released +Content-Type: text/plain; charset=utf-8 +Content-Transfer-Encoding: 8bit + +Hi, + +I just released i3 v${RELEASE_VERSION}. Release notes follow: +EOT +cat ${TMPDIR}/i3/RELEASE-NOTES-${RELEASE_VERSION} >>email.txt + +################################################################################ +# Section 5: final push instructions ################################################################################ echo "As a final sanity check, install the debian package and see whether i3 works." @@ -174,20 +215,19 @@ echo "When satisfied, run:" echo " cd ${TMPDIR}/i3" echo " git checkout next" echo " vi debian/changelog" -# TODO: can we just set up the remote spec properly? -echo " git push git@github.com:i3/i3 next" -echo " git push git@github.com:i3/i3 master" -echo " git push git@github.com:i3/i3 --tags" +echo " git commit -a -m \"debian: update changelog\"" +echo " git push" echo "" echo " cd ${TMPDIR}/i3.github.io" -# TODO: can we just set up the remote spec properly? -echo " git push git@github.com:i3/i3.github.io master" +echo " git push" echo "" echo " cd ${TMPDIR}/debian" echo " dput *.changes" echo "" +echo " cd ${TMPDIR}" +echo " sendmail -t < email.txt" +echo "" echo "Announce on:" echo " twitter" echo " google+" -echo " mailing list" echo " #i3 topic"