diff --git a/doc/conf.py b/doc/conf.py index b1eb35ad..d4b90219 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.5' +release = '4.2.6' # 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 b81d6fef..c5073192 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.2.5 +Version: 4.2.6 Release: 1%{?dist} Summary: Distribution compose tool @@ -111,6 +111,13 @@ pytest cd tests && ./test_compose.sh %changelog +* Wed Nov 04 2020 Bohdan Khomutskyi - 4.2.6-1 +- Allow setting int arguments for pungi-buildinstall plugin. (jkaluza) +- Use shlex_quote for complete --foo=bar argument. (jkaluza) +- Include images info in composeinfo.json (hlin) +- tests: Fix mock usage for Python 2 (lsedlar) +- Fix typo in config validation (lsedlar) + * Fri Sep 25 2020 Lubomír Sedlář - 4.2.5-1 - Allow setting --development compose_type. (jkaluza) - Make sure old pkgset arch repo exists when reuing (hlin) diff --git a/setup.py b/setup.py index 3f5a9b9d..12770e47 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages = sorted(packages) setup( name="pungi", - version="4.2.5", + version="4.2.6", description="Distribution compose tool", url="https://pagure.io/pungi", author="Dennis Gilmore",