From b53f2ba9bf19a6a68b3ed6d2d1572eee4ba99aa3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 11 Jun 2015 22:12:27 -0500 Subject: [PATCH] 4.0.1 release Signed-off-by: Dennis Gilmore --- bin/pungi | 2 +- pungi.spec | 15 +++++++++++++-- setup.py | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/bin/pungi b/bin/pungi index 478059af..6596a5a0 100755 --- a/bin/pungi +++ b/bin/pungi @@ -200,7 +200,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 4.0.1") def set_config(option, opt_str, value, parser, config): config.set('pungi', option.dest, value) diff --git a/pungi.spec b/pungi.spec index fb97d4a1..d9fe3099 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,6 +1,6 @@ Name: pungi -Version: 4.0 -Release: 0.9%{?dist} +Version: 4.0.1 +Release: 1%{?dist} Summary: Distribution compose tool Group: Development/Tools @@ -59,6 +59,17 @@ rm -rf $RPM_BUILD_ROOT /var/cache/pungi %changelog +* Thu Jun 11 2015 Dennis Gilmore - 4.0.1-1 +- wrap check for selinux enforcing in a try except (dennis) +- pull in gather.py patches from dmach for test compose (admiller) +- Add some basic testing, dummy rpm creation, and a testing README (admiller) +- pungi-koji: use logger instead of print when it's available (lkocman) +- fix incorrect reference to variable 'product_is_layered' (lkocman) +- pungi-koji: fix bad module path to verify_label() (lkocman) +- update the package Requires to ensure we have everything installed to run + pungi-koji (dennis) +- update the package to be installed for productmd to python-productmd (dennis) + * Sun Jun 07 2015 Dennis Gilmore - 4.0-0.9 - update docs now devel-4-pungi is merged to master, minor spelling fixes (pbrobinson) diff --git a/setup.py b/setup.py index 216bf2d3..f7eb9cb7 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.0", # make sure it matches with pungi.__version__ + version = "4.0.1", # make sure it matches with pungi.__version__ description = "Distribution compose tool", url = "http://fedorahosted.org/pungi", author = "Dennis Gilmore",