diff --git a/Changelog b/Changelog index f3adf92b..4a17df35 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Thu May 24 2007 Jesse Keating +- Use a package checksum to verify cached download + * Wed May 23 2007 Jesse Keating - Commit config files used for producing Fedora 7 - Default pungi.conf file to using Fedora 7 stuff diff --git a/pungi b/pungi index f73ac644..6d7f0453 100755 --- a/pungi +++ b/pungi @@ -144,7 +144,7 @@ if __name__ == '__main__': import sys def get_arguments(): - parser = OptionParser(version="%prog 0.3.3") + parser = OptionParser(version="%prog 0.3.4") parser.add_option("--destdir", default="*CONFFILE*", dest="destdir", help='destination directory (defaults to current directory)') parser.add_option("-c", "--conf", default='/etc/pungi/pungi.conf', dest="config", diff --git a/pungi.spec b/pungi.spec index 9d37fc79..1eb340de 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,7 +1,7 @@ %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} Name: pungi -Version: 0.3.3 +Version: 0.3.4 Release: 1%{?dist} Summary: Distribution compose tool @@ -46,6 +46,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu May 24 2007 Jesse Keating - 0.3.4-1 +- Use a package checksum to verify cached download + * Wed May 23 2007 Jesse Keating - 0.3.3-1 - Commit config files used for producing Fedora 7 - Default pungi.conf file to using Fedora 7 stuff diff --git a/setup.py b/setup.py index 4bece108..88f23042 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='0.3.3', + version='0.3.4', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com',