diff --git a/pungi b/pungi index 135c262f..6cce7c40 100755 --- a/pungi +++ b/pungi @@ -115,7 +115,7 @@ if __name__ == '__main__': today = time.strftime('%Y%m%d', time.localtime()) def get_arguments(config): - parser = OptionParser(version="%prog 1.0.2") + parser = OptionParser(version="%prog 1.1.0") def set_config(option, opt_str, value, parser, config): config.set('default', option.dest, value) diff --git a/pungi.spec b/pungi.spec index 315358ee..29814d1c 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: 1.0.2 +Version: 1.1.0 Release: 1%{?dist} Summary: Distribution compose tool @@ -51,6 +51,18 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Sep 14 2007 Jesse Keating - 1.1.0-1 +- Create repoview content in the tree +- Move the .composeinfo file into the directory we actually publish +- Remove python2.5 needs (Mark McLoughlin) +- Consolidate the download code for easier maint. (Mark McLoughlin) +- Create a config class that can make using pungi modules easier. (Mark +McLoughlin) +- Use url line in kickstart files as a repo +- Fix a bug with default dest dir (notting) +- Include a man page (dcantrell) +- Fix a bug with file:// based repos + * Thu Aug 30 2007 Jesse Keating - 1.0.2-1 - Fix some bugs with source iso creation - Add source repo to kickstart file diff --git a/setup.py b/setup.py index 966f5c58..4d90c18b 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='1.0.2', + version='1.1.0', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com',