Add release_notes.rst. Change version to 0.9.5 in preparation for test release.

This commit is contained in:
Daniel Nichter
2011-08-04 12:17:29 -06:00
parent 61b64d4208
commit c7b78ee9cb
9 changed files with 110 additions and 24 deletions

View File

@@ -108,6 +108,8 @@ write_index() {
echo " $section_filename" >> $RST/index.rst
done
echo " release_notes" >> $RST/index.rst
echo ".. toctree::" >> $RST/tools.rst
echo " :hidden:" >> $RST/tools.rst
echo >> $RST/tools.rst
@@ -130,10 +132,15 @@ if [ $# -gt 0 ]; then
done
fi
if [ "$DOCS/percona-toolkit.pod" -nt "$RST/index.rst" ]; then
if [ ! -f "$RST/index.rst" ] || [ "$DOCS/percona-toolkit.pod" -nt "$RST/index.rst" ]; then
write_index
fi
if [ ! -f "$RST/release_notes.rst" ] || [ "$DOCS/release_notes.rst" -nt "$RST/release_notes.rst" ]; then
cp $DOCS/release_notes.rst $RST/
echo "Wrote $RST/release_notes.rst"
fi
BUILD=${BUILD:-1}
if [ $BUILD -eq 1 ]; then
# -W treats warnings as errors; remove it to ignore warnings if you must.