Prep for release.

This commit is contained in:
Jesse Keating 2008-02-28 17:13:56 -05:00 committed by Jesse Keating
parent 7b27cd5c8b
commit b623f31621
3 changed files with 8 additions and 2 deletions

View File

@ -57,6 +57,12 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Fri Jan 25 2008 jkeating <jkeating@redhat.com> 1.2.8-1
- Put createrepo arguments in correct order
- Fix comps mashup to be more lenient with the open/close of <comps
- Handle gzipped comps files.
- Make sure we get fresh repomd.xml each time we run
- Don't autoclean the repodata, some of it can be reused
- Clear out the repodata we copy out temporarily, so that we don't
traceback on --force runs.
* Tue Jan 22 2008 jkeating <jkeating@redhat.com> 1.2.7-1
- Rework how repodata gets generated for media.

View File

@ -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',

View File

@ -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)