diff --git a/pungi.spec b/pungi.spec index 33c8c06b..66b69039 100644 --- a/pungi.spec +++ b/pungi.spec @@ -57,6 +57,12 @@ rm -rf $RPM_BUILD_ROOT %changelog * Fri Jan 25 2008 jkeating 1.2.8-1 - Put createrepo arguments in correct order +- Fix comps mashup to be more lenient with the open/close of 1.2.7-1 - Rework how repodata gets generated for media. diff --git a/setup.py b/setup.py index 74cbb7be..f8328cd0 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='1.2.7', + version='1.2.8', description='Distribution compose tool', author='Jesse Keating', author_email='jkeating@redhat.com', diff --git a/src/bin/pungi.py b/src/bin/pungi.py index dc5b9829..a3e2d9c4 100755 --- a/src/bin/pungi.py +++ b/src/bin/pungi.py @@ -121,7 +121,7 @@ if __name__ == '__main__': today = time.strftime('%Y%m%d', time.localtime()) def get_arguments(config): - parser = OptionParser(version="%prog 1.2.7") + parser = OptionParser(version="%prog 1.2.8") def set_config(option, opt_str, value, parser, config): config.set('default', option.dest, value)