From a0899e3dc6556889ed964bd78195095be68bd832 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mar 10 2016 16:27:25 +0000 Subject: 4.0.9 release Signed-off-by: Dennis Gilmore --- diff --git a/bin/pungi b/bin/pungi index a29b162..33cf8b8 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 4.0.8") + parser = OptionParser("%prog [--help] [options]", version="%prog 4.0.9") def set_config(option, opt_str, value, parser, config): config.set('pungi', option.dest, value) diff --git a/doc/conf.py b/doc/conf.py index 2638d97..b2891fe 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,7 +53,7 @@ copyright = u'2015, Red Hat, Inc.' # The short X.Y version. version = '4.0' # The full version, including alpha/beta/rc tags. -release = '4.0.8' +release = '4.0.9' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pungi.spec b/pungi.spec index b82bb8b..704f393 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.0.8 +Version: 4.0.9 Release: 1%{?dist} Summary: Distribution compose tool @@ -70,6 +70,26 @@ nosetests --exe --with-cov --cov-report html --cov-config tox.ini #cd tests && ./test_compose.sh %changelog +* Thu Mar 10 2016 Dennis Gilmore - 4.0.9-1 +- [init] Update documentation (lsedlar) +- [init] Iterate over arches just once (lsedlar) +- [init] Remove duplicated checks for comps (lsedlar) +- [init] Break long lines (lsedlar) +- [init] Don't overwrite the same log file (lsedlar) +- [init] Add config option for keeping original comps (lsedlar) +- Add tests for the init phase (lsedlar) +- [checks] Test printing in all cases (lsedlar) +- [checks] Reduce code duplication (lsedlar) +- [checks] Relax check for genisoimage (lsedlar) +- [checks] Remove duplicate msgfmt line (lsedlar) +- [checks] Relax check for isohybrid command (lsedlar) +- [checks] Add tests for dependency checking (lsedlar) +- [checks] Don't always require jigdo (lsedlar) +- [pkgset] Respect inherit setting (lsedlar) +- specify that the 4.0 docs are for 4.0.8 (dennis) +- [live-media] Support release set to None globally (lsedlar) +- include tests/fixtures/* in the tarball (dennis) + * Tue Mar 08 2016 Dennis Gilmore - 4.0.8-1 - Add README (lsedlar) - [doc] Fix formatting (lsedlar) diff --git a/setup.py b/setup.py index f5c03c8..3fb2ce7 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.0.8", # make sure it matches with pungi.__version__ + version = "4.0.9", # make sure it matches with pungi.__version__ description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",