release_helper.sh
224 lines
| 5.7 KiB
| application/x-sh
|
BashLexer
/ tools / release_helper.sh
Matthias Bussonnier
|
r24981 | # Simple tool to help for release | ||
Matthias Bussonnier
|
r25315 | # when releasing with bash, simple source it to get asked questions. | ||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25157 | # misc check before starting | ||
python -c 'import keyring' | ||||
python -c 'import twine' | ||||
python -c 'import sphinx' | ||||
python -c 'import sphinx_rtd_theme' | ||||
Matthias Bussonnier
|
r25158 | python -c 'import nose' | ||
Matthias Bussonnier
|
r25157 | |||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25179 | BLACK=$(tput setaf 1) | ||
Matthias Bussonnier
|
r25128 | RED=$(tput setaf 1) | ||
Matthias Bussonnier
|
r25179 | GREEN=$(tput setaf 2) | ||
YELLOW=$(tput setaf 3) | ||||
BLUE=$(tput setaf 4) | ||||
MAGENTA=$(tput setaf 5) | ||||
CYAN=$(tput setaf 6) | ||||
WHITE=$(tput setaf 7) | ||||
Matthias Bussonnier
|
r25128 | NOR=$(tput sgr0) | ||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25282 | echo -n "PREV_RELEASE (X.y.z) [$PREV_RELEASE]: " | ||
read input | ||||
PREV_RELEASE=${input:-$PREV_RELEASE} | ||||
echo -n "MILESTONE (X.y) [$MILESTONE]: " | ||||
read input | ||||
MILESTONE=${input:-$MILESTONE} | ||||
echo -n "VERSION (X.y.z) [$VERSION]:" | ||||
read input | ||||
VERSION=${input:-$VERSION} | ||||
Matthias Bussonnier
|
r25300 | echo -n "BRANCH (master|X.y) [$BRANCH]:" | ||
Matthias Bussonnier
|
r25282 | read input | ||
Matthias Bussonnier
|
r25300 | BRANCH=${input:-$BRANCH} | ||
Matthias Bussonnier
|
r25282 | |||
ask_section(){ | ||||
echo | ||||
echo $BLUE"$1"$NOR | ||||
Matthias Bussonnier
|
r25411 | echo -n $GREEN"Press Enter to continue, S to skip: "$NOR | ||
Matthias Bussonnier
|
r25282 | read -n1 value | ||
echo | ||||
if [ -z $value ] || [ $value = 'y' ] ; then | ||||
return 0 | ||||
fi | ||||
return 1 | ||||
} | ||||
Matthias Bussonnier
|
r24982 | |||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r24982 | echo | ||
Matthias Bussonnier
|
r25282 | if ask_section "Updating what's new with informations from docs/source/whatsnew/pr" | ||
then | ||||
python tools/update_whatsnew.py | ||||
echo | ||||
echo $BLUE"please move the contents of "docs/source/whatsnew/development.rst" to version-X.rst"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
fi | ||||
if ask_section "Gen Stats, and authors" | ||||
then | ||||
echo | ||||
echo $BLUE"here are all the authors that contributed to this release:"$NOR | ||||
git log --format="%aN <%aE>" $PREV_RELEASE... | sort -u -f | ||||
echo | ||||
Matthias Bussonnier
|
r25298 | echo $BLUE"If you see any duplicates cancel (Ctrl-C), then edit .mailmap." | ||
echo $GREEN"Press enter to continue:"$NOR | ||||
Matthias Bussonnier
|
r25282 | read | ||
echo $BLUE"generating stats"$NOR | ||||
python tools/github_stats.py --milestone $MILESTONE > stats.rst | ||||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25282 | echo $BLUE"stats.rst files generated."$NOR | ||
echo $GREEN"Please merge it with the right file (github-stats-X.rst) and commit."$NOR | ||||
echo $GREEN"press enter to continue."$NOR | ||||
read | ||||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25282 | fi | ||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25776 | if ask_section "Generate API difference (using frapuccino)" | ||
then | ||||
echo $BLUE"Checking out $PREV_RELEASE"$NOR | ||||
git checkout $PREV_RELEASE | ||||
echo $BLUE"Saving API to file $PREV_RELEASE"$NOR | ||||
frappuccino IPython --save IPython-$PREV_RELEASE.json | ||||
echo $BLUE"comming back to $BRANCH"$NOR | ||||
git checkout $BRANCH | ||||
echo $BLUE"comparing ..."$NOR | ||||
frappuccino IPython --compare IPython-$PREV_RELEASE.json | ||||
echo $GREEN"Use the above guideline to write an API changelog ..."$NOR | ||||
echo $GREEN"Press any keys to continue"$NOR | ||||
read | ||||
fi | ||||
Matthias Bussonnier
|
r24981 | echo "Cleaning repository" | ||
git clean -xfdi | ||||
Matthias Bussonnier
|
r25182 | echo $GREEN"please update version number in ${RED}IPython/core/release.py${NOR} , Do not commit yet – we'll do it later."$NOR | ||
Matthias Bussonnier
|
r25946 | echo $GREEN"I tried ${RED}sed -i bkp -e '/Uncomment/s/^# //g' IPython/core/release.py${NOR}" | ||
sed -i bkp -e '/Uncomment/s/^# //g' IPython/core/release.py | ||||
rm IPython/core/release.pybkp | ||||
git diff | ||||
Matthias Bussonnier
|
r24981 | |||
Matthias Bussonnier
|
r25182 | echo $GREEN"Press enter to continue"$NOR | ||
Matthias Bussonnier
|
r24981 | read | ||
Matthias Bussonnier
|
r24982 | |||
Matthias Bussonnier
|
r25314 | if ask_section "Build the documentation ?" | ||
then | ||||
make html -C docs | ||||
echo | ||||
echo $GREEN"Check the docs, press enter to continue"$NOR | ||||
read | ||||
Matthias Bussonnier
|
r24982 | |||
Matthias Bussonnier
|
r25314 | fi | ||
Matthias Bussonnier
|
r24982 | |||
Matthias Bussonnier
|
r25315 | if ask_section "Should we commit, tag, push... etc ? " | ||
Matthias Bussonnier
|
r25314 | then | ||
echo | ||||
Matthias Bussonnier
|
r25406 | echo $BLUE"Let's commit : git commit -am \"release $VERSION\" -S" | ||
Matthias Bussonnier
|
r25314 | echo $GREEN"Press enter to commit"$NOR | ||
read | ||||
git commit -am "release $VERSION" -S | ||||
echo | ||||
echo $BLUE"git push origin \$BRANCH ($BRANCH)?"$NOR | ||||
echo $GREEN"Make sure you can push"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
git push origin $BRANCH | ||||
echo | ||||
echo "Let's tag : git tag -am \"release $VERSION\" \"$VERSION\" -s" | ||||
echo $GREEN"Press enter to tag commit"$NOR | ||||
read | ||||
git tag -am "release $VERSION" "$VERSION" -s | ||||
echo | ||||
echo $BLUE"And push the tag: git push origin \$VERSION ?"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
git push origin $VERSION | ||||
echo $GREEN"please update version number and back to .dev in ${RED}IPython/core/release.py" | ||||
Matthias Bussonnier
|
r25946 | echo $GREEN"I tried ${RED}sed -i bkp -e '/Uncomment/s/^/# /g' IPython/core/release.py${NOR}" | ||
sed -i bkp -e '/Uncomment/s/^/# /g' IPython/core/release.py | ||||
rm IPython/core/release.pybkp | ||||
git diff | ||||
echo $GREEN"Please bump ${RED}the minor version number${NOR}" | ||||
Matthias Bussonnier
|
r25314 | echo ${BLUE}"Do not commit yet – we'll do it later."$NOR | ||
Matthias Bussonnier
|
r25946 | |||
Matthias Bussonnier
|
r25314 | |||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
echo | ||||
Matthias Bussonnier
|
r25404 | echo "Let's commit : "$BLUE"git commit -am \"back to dev\""$NOR | ||
Matthias Bussonnier
|
r25314 | echo $GREEN"Press enter to commit"$NOR | ||
read | ||||
Matthias Bussonnier
|
r25404 | git commit -am "back to dev" | ||
Matthias Bussonnier
|
r25412 | |||
echo | ||||
echo $BLUE"git push origin \$BRANCH ($BRANCH)?"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
git push origin $BRANCH | ||||
Matthias Bussonnier
|
r25314 | |||
echo | ||||
echo $BLUE"let's : git checkout $VERSION"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
git checkout $VERSION | ||||
fi | ||||
Matthias Bussonnier
|
r25300 | |||
Matthias Bussonnier
|
r25314 | if ask_section "Should we build and release ?" | ||
then | ||||
Matthias Bussonnier
|
r25769 | |||
echo $BLUE"going to set SOURCE_DATE_EPOCH"$NOR | ||||
echo $BLUE'export SOURCE_DATE_EPOCH=$(git show -s --format=%ct HEAD)'$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
export SOURCE_DATE_EPOCH=$(git show -s --format=%ct HEAD) | ||||
echo $BLUE"SOURCE_DATE_EPOCH set to $SOURCE_DATE_EPOCH"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
echo | ||||
echo $BLUE"Attempting to build package..."$NOR | ||||
tools/release | ||||
echo $RED'$ shasum -a 256 dist/*' | ||||
shasum -a 256 dist/* | ||||
echo $NOR | ||||
echo $BLUE"We are going to rebuild, node the hash above, and compare them to the rebuild"$NOR | ||||
echo $GREEN"Press enter to continue"$NOR | ||||
read | ||||
Matthias Bussonnier
|
r25300 | |||
Matthias Bussonnier
|
r25314 | echo | ||
echo $BLUE"Attempting to build package..."$NOR | ||||
Matthias Bussonnier
|
r25275 | |||
Matthias Bussonnier
|
r25404 | tools/release | ||
Matthias Bussonnier
|
r25284 | |||
Matthias Bussonnier
|
r25769 | echo $RED"Check the shasum for SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH" | ||
echo $RED'$ shasum -a 256 dist/*' | ||||
Matthias Bussonnier
|
r25314 | shasum -a 256 dist/* | ||
Matthias Bussonnier
|
r25404 | echo $NOR | ||
Matthias Bussonnier
|
r25128 | |||
Matthias Bussonnier
|
r25314 | if ask_section "upload packages ?" | ||
then | ||||
Matthias Bussonnier
|
r25404 | tools/release upload | ||
Matthias Bussonnier
|
r25314 | fi | ||
fi | ||||