From e549c732a482bf1dd56af98f93366c133f22770f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Thu, 4 May 2017 11:00:23 +0200 Subject: [PATCH] 4.1.15 release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- doc/conf.py | 2 +- pungi.spec | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++- setup.py | 2 +- 3 files changed, 55 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 08c715b0..35465f4a 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.14' +release = '4.1.15' # 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 583dabd1..f3437f5d 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.1.14 +Version: 4.1.15 Release: 1%{?dist} Summary: Distribution compose tool @@ -102,6 +102,58 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Thu May 04 2017 Lubomír Sedlář - 4.1.15-1 +- pkgset: Remove use of undefined variable (lsedlar) +- Store RPM artifacts in resulting repository in modulemd metadata. (jkaluza) +- variants: Remove redundant check (lsedlar) +- compose: Stop duplicating variant types (lsedlar) +- gather: Remove handling of impossible state (lsedlar) +- gather: Clean up code (lsedlar) +- gather: Add tests for gather phase (lsedlar) +- scm-wrapper: Remove unused arguments (lsedlar) +- tests: Avoid creating unused temporary files (lsedlar) +- tests: Clean up persistent temporary data (lsedlar) +- docs: Add a logo on the About page (lsedlar) +- docs: Document origin of the name (lsedlar) +- gather-dnf: Log exact Requires pulling a package in (lsedlar) +- gather: Print specific Requires which pulls a package in (lsedlar) +- gather: Process dependencies sorted (lsedlar) +- koji-wrapper: Run koji runroot with fresh credentials cache (lsedlar) +- util: Move get_buildroot_rpms to koji wrapper (lsedlar) +- osbs: Make git_branch required option (lsedlar) +- docs: Update createrepo_checksum allowed values (lsedlar) +- extra-files: Allow configuring used checksums (lsedlar) +- doc: Document options for media checksums (lsedlar) +- config: Add sha512 as valid createrepo checksum (lsedlar) +- util: Report better error on resolving non-existing branch (lsedlar) +- util: Show choices for volid if all are too long (lsedlar) +- checks: Fix anyOf validator yield ValidationError on ConfigOptionWarning + (qwan) +- comps-wrapper: Reduce duplication in code (lsedlar) +- comps-wrapper: Port to libcomps (lsedlar) +- comps-wrapper: Sort langpacks by name (lsedlar) +- comps-wrapper: Minor code cleanup (lsedlar) +- comps-wrapper: Add tests (lsedlar) +- comps-wrapper: Fix uservisible not being modifiable (lsedlar) +- comps-wrapper: Return IDs instead of yum.comps.Group (lsedlar) +- comps-wrapper: Remove unused code (lsedlar) +- Be explicit about generating release for images (lsedlar) +- docs: Add examples for generated versions (lsedlar) +- ostree: Autogenerate a version (lsedlar) +- Expand compatible arches when gathering from modules. (rbean) +- gather: Clean up method deps (lsedlar) +- gather: Report error if there is no input (lsedlar) +- init: Warn when variants mentions non-existing comps group (lsedlar) +- Fix createrepo issue for modular compose when multiple threads tried to use + the same tmp directory. (jkaluza) +- unified-iso: Use different type for debuginfo iso (lsedlar) +- unified-iso: Handle missing paths in metadata (lsedlar) +- unify repo and repo_from options (qwan) +- Fix some PEP8 errors in util.py (qwan) +- move translate_path from paths.py to util.py (qwan) +- checks.py: support 'append' option (qwan) +- checks.py: show warning message for alias option (qwan) + * Mon Mar 27 2017 Lubomír Sedlář - 4.1.14-1 - Not create empty skeleton dirs for empty variants (qwan) - Query only active modules in PDC. (jkaluza) diff --git a/setup.py b/setup.py index 0dd88d3b..b5f19f76 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.1.14", + version = "4.1.15", description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",