From 0b09c8c39c18ba83ea96611caf01b80b7c2862e2 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mar 10 2015 21:09:20 +0000 Subject: 3.14 release --- diff --git a/pungi.spec b/pungi.spec index 1b62f19..16e3edd 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: 3.13 +Version: 3.14 Release: 1%{?dist} Summary: Distribution compose tool @@ -56,6 +56,11 @@ rm -rf $RPM_BUILD_ROOT /var/cache/pungi %changelog +* Tue Mar 10 2015 Dennis Gilmore - 3.14-1 +- switch to BSD style hashes for the iso checksums (dennis) +- refactor to get better data into .treeinfo (dennis) +- Add --nomacboot option (csieh) + * Fri Dec 12 2014 Dennis Gilmore - 3.13-1 - Add support for --installpkgs (bcl) - Add a cmdline option to set the lorax config file (bcl) diff --git a/setup.py b/setup.py index 4cba64e..d751c48 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup import glob setup(name='pungi', - version='3.13', # make sure src/bin/pungi.py is updated to match + version='3.14', # make sure src/bin/pungi.py is updated to match description='Distribution compose tool', author='Dennis Gilmore', author_email='dgilmore@fedoraproject.org', diff --git a/src/bin/pungi.py b/src/bin/pungi.py index 5e8589c..7850d4d 100755 --- a/src/bin/pungi.py +++ b/src/bin/pungi.py @@ -201,7 +201,7 @@ if __name__ == '__main__': today = time.strftime('%Y%m%d', time.localtime()) def get_arguments(config): - parser = OptionParser("%prog [--help] [options]", version="%prog 3.13") + parser = OptionParser("%prog [--help] [options]", version="%prog 3.14") def set_config(option, opt_str, value, parser, config): config.set('pungi', option.dest, value)