4.0.1 release

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2015-06-11 22:12:27 -05:00
parent 11a80ddbda
commit b53f2ba9bf
3 changed files with 15 additions and 4 deletions

View File

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

View File

@ -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 <dennis@ausil.us> - 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 <dennis@ausil.us> - 4.0-0.9
- update docs now devel-4-pungi is merged to master, minor spelling fixes
(pbrobinson)

View File

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