X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=release.sh;h=766f4d3044cdf072a93dcb28a52cde42eaa843f7;hb=e41dee32daecc4ceb2809c03ec5d34e536201baa;hp=6e305464dc564e9e6ef34a3af3ebabb0a1c6fc8d;hpb=5a20394092a65675c1e026cbaba04e6416bc25dc;p=i3%2Fi3 diff --git a/release.sh b/release.sh index 6e305464..766f4d30 100755 --- a/release.sh +++ b/release.sh @@ -1,14 +1,20 @@ #!/bin/zsh # This script is used to prepare a new release of i3. -export RELEASE_VERSION="4.10.3" -export PREVIOUS_VERSION="4.10.2" -export RELEASE_BRANCH="master" +export RELEASE_VERSION="4.11" +export PREVIOUS_VERSION="4.10.4" +export RELEASE_BRANCH="next" if [ ! -e "../i3.github.io" ] then echo "../i3.github.io does not exist." - echo "Use git clone git://github.com/i3/i3.github.io" + echo "Use git clone https://github.com/i3/i3.github.io" + exit 1 +fi + +if ! (cd ../i3.github.io && git pull) +then + echo "Could not update ../i3.github.io repository" exit 1 fi @@ -35,7 +41,7 @@ STARTDIR=$PWD TMPDIR=$(mktemp -d) cd $TMPDIR -if ! wget http://i3wm.org/downloads/i3-${PREVIOUS_VERSION}.tar.bz2; then +if ! wget https://i3wm.org/downloads/i3-${PREVIOUS_VERSION}.tar.bz2; then echo "Could not download i3-${PREVIOUS_VERSION}.tar.bz2 (required for comparing files)." exit 1 fi @@ -148,7 +154,6 @@ git add downloads/i3-${RELEASE_VERSION}.tar.bz2* cp ${TMPDIR}/i3/RELEASE-NOTES-${RELEASE_VERSION} downloads/RELEASE-NOTES-${RELEASE_VERSION}.txt git add downloads/RELEASE-NOTES-${RELEASE_VERSION}.txt sed -i "s,

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 @@ -163,15 +168,17 @@ git commit -a -m "save docs for ${PREVIOUS_VERSION}" for i in $(find _docs -maxdepth 1 -and -type f -and \! -regex ".*\.\(html\|man\)$" -and \! -name "Makefile") do base="$(basename $i)" - [ -e "${STARTDIR}/docs/${base}" ] && cp "${STARTDIR}/docs/${base}" "_docs/${base}" + [ -e "${TMPDIR}/i3/docs/${base}" ] && cp "${TMPDIR}/i3/docs/${base}" "_docs/${base}" done +sed -i "s,Verify you are using i3 ≥ .*,Verify you are using i3 ≥ ${RELEASE_VERSION},g" _docs/debugging + (cd _docs && make) for i in $(find _docs -maxdepth 1 -and -type f -and \! -regex ".*\.\(html\|man\)$" -and \! -name "Makefile") do base="$(basename $i)" - [ -e "${STARTDIR}/docs/${base}" ] && cp "_docs/${base}.html" docs/ + [ -e "${TMPDIR}/i3/docs/${base}" ] && cp "_docs/${base}.html" docs/ done git commit -a -m "update docs for ${RELEASE_VERSION}" @@ -223,5 +230,4 @@ echo "" echo "Announce on:" echo " twitter" echo " google+" -echo " mailing list" echo " #i3 topic"