X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=release.sh;h=6e305464dc564e9e6ef34a3af3ebabb0a1c6fc8d;hb=5a20394092a65675c1e026cbaba04e6416bc25dc;hp=3c7ddd85bd5009aed657d4c293e1b83af3ca0fea;hpb=fe8003ef4ff0e04a926414e15a9a79ac37797442;p=i3%2Fi3 diff --git a/release.sh b/release.sh index 3c7ddd85..6e305464 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 @@ -74,12 +74,12 @@ 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 @@ -98,6 +98,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 <Documentation for i3 v[^<]*,

Documentation for i3 v${RELEASE_VERSION}

,g" docs/index.html +sed -i "s,Verify you are using i3 ≥ .*,Verify you are using i3 ≥ ${RELEASE_VERSION},g" docs/debugging.html sed -i "s,[^<]*,${RELEASE_VERSION},g" index.html sed -i "s,The current stable version is .*$,The current stable version is ${RELEASE_VERSION}.,g" downloads/index.html sed -i "s,,\n \n ${RELEASE_VERSION}\n i3-${RELEASE_VERSION}.tar.bz2\n $(ls -lh ../i3/i3-${RELEASE_VERSION}.tar.bz2 | awk -F " " {'print $5'} | sed 's/K$/ KiB/g')\n signature\n $(date +'%Y-%m-%d')\n release notes\n \n,g" downloads/index.html @@ -172,9 +178,28 @@ git commit -a -m "update docs for ${RELEASE_VERSION}" git remote remove origin git remote add origin git@github.com:i3/i3.github.io.git +git config --add remote.origin.push "+refs/heads/master:refs/heads/master" ################################################################################ -# Section 4: final push instructions +# Section 4: prepare release announcement email +################################################################################ + +cd ${TMPDIR} +cat >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." @@ -183,6 +208,7 @@ echo "When satisfied, run:" echo " cd ${TMPDIR}/i3" echo " git checkout next" echo " vi debian/changelog" +echo " git commit -a -m \"debian: update changelog\"" echo " git push" echo "" echo " cd ${TMPDIR}/i3.github.io" @@ -191,6 +217,9 @@ 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+"