1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/bin/bash
#
# Script that makes changes in preparation of a new release, such as updating
# the version and documentation.
EXIT_FAILURE=1;
EXIT_SUCCESS=0;
VERSION=`date -u +"%Y%m%d"`
DPKG_DATE=`date -R`
# Update the Python module version.
sed "s/__version__ = '[0-9]*'/__version__ = '${VERSION}'/" -i dfdatetime/__init__.py
# Update the version in the dpkg configuration files.
cat > config/dpkg/changelog << EOT
dfdatetime (${VERSION}-1) unstable; urgency=low
* Auto-generated
-- Log2Timeline maintainers <log2timeline-maintainers@googlegroups.com> ${DPKG_DATE}
EOT
# Regenerate the supported formats documentation.
# TODO: generate supported formats.
# PYTHONPATH=. ./utils/export_supported_formats.py > docs/sources/Supported-formats.md
# Regenerate the API documentation.
tox -edocs
exit ${EXIT_SUCCESS};
|