diff --git a/doc/conf.py b/doc/conf.py index 763c4de7..bf2d0b22 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.4' # The full version, including alpha/beta/rc tags. -release = '4.4.0' +release = '4.4.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 3269eb29..c48cea04 100644 --- a/pungi.spec +++ b/pungi.spec @@ -1,5 +1,5 @@ Name: pungi -Version: 4.4.0 +Version: 4.4.1 Release: 1%{?dist} Summary: Distribution compose tool @@ -110,6 +110,12 @@ pytest cd tests && ./test_compose.sh %changelog +* Tue Jul 25 2023 Aditya Bisoi - 4.4.1-1 +- ostree: Add configuration for custom runroot packages (lsedlar) +- pkgset: Emit better error for missing modulemd file (lsedlar) +- Add support for git-credential-helper (lsedlar) +- Support OIDC Client Credentials authentication to CTS (hlin) + * Tue Jun 06 2023 Lubomír Sedlář - 4.4.0-1 - gather-dnf: Run latest() later (lsedlar) - iso: Support joliet long names (lsedlar) diff --git a/setup.py b/setup.py index 991bf8a3..297ff596 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ packages = sorted(packages) setup( name="pungi", - version="4.4.0", + version="4.4.1", description="Distribution compose tool", url="https://pagure.io/pungi", author="Dennis Gilmore",