4.0.2 release

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2015-07-24 12:39:14 -05:00
parent 5432d3fa74
commit 8b1d5ab9b2
3 changed files with 25 additions and 3 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 4.0.1")
parser = OptionParser("%prog [--help] [options]", version="%prog 4.0.2")
def set_config(option, opt_str, value, parser, config):
config.set('pungi', option.dest, value)

View File

@ -1,5 +1,5 @@
Name: pungi
Version: 4.0.1
Version: 4.0.2
Release: 1%{?dist}
Summary: Distribution compose tool
@ -59,6 +59,28 @@ rm -rf $RPM_BUILD_ROOT
/var/cache/pungi
%changelog
* Fri Jul 24 2015 Dennis Gilmore <dennis@ausil.us> - 4.0.2-1
- Merge #23 `fix treeinfo checksums` (dmach)
- Fix treeinfo checksums. (dmach)
- add basic setup for making arm iso's (dennis)
- gather: Implement hashed directories. (dmach)
- createiso: Add createiso_skip options to skip createiso on any variant/arch.
(dmach)
- Fix buildinstall for armhfp. (dmach)
- Fix and document productimg phase. (dmach)
- Add armhfp arch tests. (dmach)
- Document configuration options. (dmach)
- Add dependency of 'runroot' config option on 'koji_profile'. (dmach)
- Rename product_* to release_*. (dmach)
- Implement koji profiles. (dmach)
- Drop repoclosure-%arch tests. (dmach)
- Config option create_optional_isos now defaults to False. (dmach)
- Change createrepo config options defaults. (dmach)
- Rewrite documentation to Sphinx. (dmach)
- Fix test data, improve Makefile. (dmach)
- Update GPL to latest version from https://www.gnu.org/licenses/gpl-2.0.txt
(dmach)
* 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)

View File

@ -25,7 +25,7 @@ packages = sorted(packages)
setup(
name = "pungi",
version = "4.0.1", # make sure it matches with pungi.__version__
version = "4.0.2", # make sure it matches with pungi.__version__
description = "Distribution compose tool",
url = "http://fedorahosted.org/pungi",
author = "Dennis Gilmore",