From 6f23c7b8baed3104a37090354857772ba224f148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 31 Jan 2020 13:14:06 +0100 Subject: [PATCH] 4.2.0 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 | 4 ++-- pungi.spec | 36 +++++++++++++++++++++++++++++++++++- setup.py | 2 +- 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 89cef407..08c6b87d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -51,9 +51,9 @@ copyright = u'2016, Red Hat, Inc.' # built documents. # # The short X.Y version. -version = '4.1' +version = '4.2' # The full version, including alpha/beta/rc tags. -release = '4.1.41' +release = '4.2.0' # 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 eb8b37e2..cce859d7 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.1.41 +Version: 4.2.0 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,40 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Fri Jan 31 2020 Lubomír Sedlář - 4.2.0-1 +- iso: Clean up cache for guestmount (lsedlar) +- Remove deprecated warn() call (lsedlar) +- arch_utils: Fix ResourceWarnings (lsedlar) +- Add support for new Pungi Buildinstall Koji plugin. (jkaluza) +- Make --task-id mandatory in get_runroot_cmd (hlin) +- Wait on runroot tasks with wait-task command (hlin) +- pkgset: Ignore deleted module builds (hlin) +- Add tests for new exclude options (lsedlar) +- Remove invalid parameters from osbs config (hlin) +- pungi-gather: add options for excluding debug and source packages + (frederic.pierret) +- Hide latest koji package via pkgset_koji_builds option (hlin) +- Add a new option for customizing version in .treeinfo (lsedlar) +- Kickstart on RHEL 7 does not have metalink attr (lsedlar) +- Support generating ISOs when using link_type="symlink". (jkaluza) +- pkgset: Hardlink downloaded packages (lsedlar) +- Check dependency of --just-phase (hlin) +- Update runroot_method documentation. (jkaluza) +- Remove productimg phase (hlin) +- Fix unified isos with missing images.json (lsedlar) +- Allow setting runroot_method per Pungi phase. (jkaluza) +- ostree: Fix arg passed to scm.get_dir_from_scm (hlin) +- Improve detection of lookaside packages (lsedlar) +- gather: Deduplicate packages before printing (lsedlar) +- Do not mention pdc_client when missing modulemd (hlin) +- gather: Improve logging for gathering (hlin) +- gather: handle metalink in kickstart repos (frederic.pierret) +- tests: drop sys.path modification (hlin) +- cleanup: refactor scripts via entry points (hlin) +- Avoid crash if a module is not available on all arches (lsedlar) +- Add version constraint to productmd dependency (lsedlar) +- Allow specifying temp dir in pungi-gather (frederic.pierret) + * Mon Dec 02 2019 Lubomír Sedlář - 4.1.41-1 - repoclosure: Parse all fus logs (lsedlar) - runroot: Log different commands to different files (lsedlar) diff --git a/setup.py b/setup.py index d0d5a2f6..5eca8b32 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.1.41", + version = "4.2.0", description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",