From 4efdacd0a0aaa44045b6d0e4225cedf874b29fc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 13 Mar 2020 10:38:27 +0100 Subject: [PATCH] 4.2.1 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 | 36 +++++++++++++++++++++++++++++++++++- setup.py | 2 +- 3 files changed, 37 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 08c6b87d..22365083 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.2' # The full version, including alpha/beta/rc tags. -release = '4.2.0' +release = '4.2.1' # 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 cce859d7..2d9956e2 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.2.0 +Version: 4.2.1 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,40 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Fri Mar 13 2020 Lubomír Sedlář - 4.2.1-1 +- Create MaterializedPackageSets in threads to make pkgset faster. (jkaluza) +- pungi-koji: Allow user to specify version component count in latest symlink + (lhh) +- pkgset: Reuse pkgset repos (hlin) +- Allow reusing gather phase results. (jkaluza) +- Remove fnmatch from nodeps gather method (lsedlar) +- Remove fnmatch from pkg_is_debug (lsedlar) +- Run extra_files phase in parallel to other phases. (jkaluza) +- Add Compose.old_compose_path and use it when searching for files in old + compose. (jkaluza) +- Do not skip symlinks when searching for old compose. (jkaluza) +- Display black output in tests (lsedlar) +- Resend message while waiting for ostree ref (lsedlar) +- Silence all productimg related warnings (lsedlar) +- Move buildinstall results to final directories if using pungi-buildinstall + Koji plugin. (jkaluza) +- Silence productimg warning in quiet mode (lsedlar) +- Check skip_phases in config file (hlin) +- Fix typos in comments (hlin) +- Remove dependency on dict.sorted (lsedlar) +- The pungi-config-validate --dump-schema now respects --schema-override. + (jkaluza) +- gather: Make additional_packages accept debuginfo packages (hlin) +- doc: add code convention requirements (hlin) +- Fix formatting issues (hlin) +- Run flake8 and black via tox (hlin) +- Fix other flake8 complaints (hlin) +- Fix flake8 complaints - E501 (hlin) +- Fix flake8 complaints - F401 (hlin) +- Format code base with black (hlin) +- Format tests with black (hlin) +- Add --schema-override to pungi-config-validate script (jkaluza) + * Fri Jan 31 2020 Lubomír Sedlář - 4.2.0-1 - iso: Clean up cache for guestmount (lsedlar) - Remove deprecated warn() call (lsedlar) diff --git a/setup.py b/setup.py index a9439397..926eb5bb 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name="pungi", - version="4.2.0", + version="4.2.1", description="Distribution compose tool", url="https://pagure.io/pungi", author="Dennis Gilmore",