diff --git a/doc/conf.py b/doc/conf.py index 1f111e2a..73da2958 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.36' +release = '4.1.37' # 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 4bba44ee..2a48e393 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.1.36 +Version: 4.1.37 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,36 @@ nosetests --exe cd tests && ./test_compose.sh %changelog +* Mon May 27 2019 Lubomír Sedlář - 4.1.37-1 +- config-dump: Allow dumping config for multi compose (lsedlar) +- pkgset: Ignore modules without metadata in Koji (lsedlar) +- runroot: Remove useless argument output_path (lsedlar) +- buildinstall: Change owner of lorax logs (lsedlar) +- kojiwrapper: Allow changing mode of multiple files (lsedlar) +- buildinstall: Create toplevel directory on compose host (lsedlar) +- arch_utils: add Hygon Dhyana CPU support (fanjinke) +- gather: Introduce module source again (lsedlar) +- metadata: Include empty directories in metadata (lsedlar) +- gather: Relax validations on variant_as_lookaside (lsedlar) +- tests: Use correct Python interpreter (lsedlar) +- tests: Ignore warnings when running validation script (lsedlar) +- Remove invalid escape sequences (lsedlar) +- Fix issues in OpenSSH Runroot method found by real tests. (jkaluza) +- buildinstall: Copy files in thread (lsedlar) +- Fall back to C locale if UTF8 version does not exist (lsedlar) +- init: Create comps repos in parallel (lsedlar) +- Switch locale to C.UTF-8 (lsedlar) +- util: Resolve ref if duplicate branches are present (lsedlar) +- config: Fix getting default branch in SCM dict (lsedlar) +- pkgset: Fix whitelist for modules (lsedlar) +- pkgset: Fix filtering excluded modular packages (lsedlar) +- pkgset: Do not overwrite version in module (lsedlar) +- pkgset: Treat modular version as number for sorting (lsedlar) +- Use absolute path for hardlink (lsedlar) +- createiso: Run hardlink on staged content (jdisnard) +- comps-wrapper: Emit attributes sorted (lsedlar) +- patch-iso supports multiple graft directories (jkonecny) + * Fri Apr 12 2019 Lubomír Sedlář - 4.1.36-1 - Extend "openssh" runroot_method to be able to execute "mock" (jkaluza) - osbs: Rework configuration for image pushes (lsedlar) diff --git a/setup.py b/setup.py index 8c39c764..f4e49a2a 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name = "pungi", - version = "4.1.36", + version = "4.1.37", description = "Distribution compose tool", url = "https://pagure.io/pungi", author = "Dennis Gilmore",