From 29761d1656e06ce9a1fcabb8c9bfc586c0139eb9 Mon Sep 17 00:00:00 2001 From: Haibo Lin Date: Thu, 13 Aug 2020 18:41:59 +0800 Subject: [PATCH] 4.2.4 release Signed-off-by: Haibo Lin --- doc/conf.py | 2 +- pungi.spec | 26 +++++++++++++++++++++++++- setup.py | 2 +- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 310b0bc5..0d767554 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.3' +release = '4.2.4' # 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 6d8b4b16..10a3e4c7 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.2.3 +Version: 4.2.4 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,30 @@ pytest cd tests && ./test_compose.sh %changelog +* Mon Aug 17 2020 Haibo Lin - 4.2.4-1 +- Allow setting CTS parent_compose_ids using --parent-compose-id option. (jkaluza) +- Replace -c parameter with --config (bkhomuts) +- doc: Update doc/contributing.rst (hlin) +- Use requirements.txt (hlin) +- Allow squashfs-only and configuration_file in lorax_options (bkhomuts) +- Hardlink or copy scratch builds always (hlin) +- Retry ostree installer task on losetup error (lsedlar) +- Use pytest instead of nosetests (hlin) +- Run tests via tox (hlin) +- Make sure old_repo_dir for reusing exists (hlin) +- Retry buildinstall tasks on losetup error (hlin) +- Allow including scratch module builds (hlin) +- Unpack RPMs using rpm2archive (lsedlar) +- Allow test calls in any order (lsedlar) +- Create arch repo when reusing failed (hlin) +- createiso: Ignore errors when deleting staging dir (hlin) +- Remove buffering when running koji commands (onosek) +- Fix typos (lsedlar) +- Check if composeinfo-base.json exists before creating it. (jkaluza) +- Port scripts/wait_for_signed_ostree_handler.py to fedora-messaging (pingou) +- Port scripts/fedmsg_notification.py to fedora-messaging (pingou) +- buildinstall: Improve error reporting when lorax fails (hlin) + * Thu Jun 11 2020 Lubomír Sedlář - 4.2.3-1 - Move test for unsigned packages with pkgset_koji_scratch_tasks to PkgsetPhase class. (jkaluza) diff --git a/setup.py b/setup.py index d678603c..125d6f1d 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name="pungi", - version="4.2.3", + version="4.2.4", description="Distribution compose tool", url="https://pagure.io/pungi", author="Dennis Gilmore",