diff --git a/doc/conf.py b/doc/conf.py index 4e17f248..84f2f58f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -53,7 +53,7 @@ copyright = u'2016, Red Hat, Inc.' # The short X.Y version. version = '4.1' # The full version, including alpha/beta/rc tags. -release = '4.1.27' +release = '4.1.28' # 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 774f1621..3b7806b1 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.1.27 +Version: 4.1.28 Release: 1%{?dist} Summary: Distribution compose tool @@ -108,6 +108,26 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Thu Sep 06 2018 Lubomír Sedlář - 4.1.28-1 +- gather: Fix multilib query for hybrid solver (lsedlar) +- gather: Expand multilib lists for hybrid method (lsedlar) +- Index arch modulemd by full NSVC (lsedlar) +- pkgset: Apply whitelist to modules in the tag (lsedlar) +- ostree: Wait for updated ref as well as signature (lsedlar) +- extra_iso: Set unified flag in metadata (lsedlar) +- pkgset: Respect koji event when searching for modules (lsedlar) +- Use dogpile.cache to cache the listTaggedRPMS calls if possible (jkaluza) +- gather: Keep original rpms.json in debug mode (lsedlar) +- Reduce duplication in tests (lsedlar) +- docs: Add better description for package globs (lsedlar) +- Create non-bootable ISO for variant without buildinstall (lsedlar) +- Clean up after yum tests (lsedlar) +- gather: Honor module whitelist (lsedlar) +- Clarify error about non-existing module (lsedlar) +- gather: Print full unresolved dependency (lsedlar) +- Fix tests on Python 2.6 (lsedlar) +- Include all test data in tarball (lsedlar) + * Fri Aug 17 2018 Lubomír Sedlář - 4.1.27-1 - extra-iso: Rename test data file (lsedlar) - createiso: Use correct python version (lsedlar) diff --git a/setup.py b/setup.py index 8ff5b58b..40abe197 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.1.27", + version = "4.1.28", description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",