diff --git a/.tito/packages/python-productmd b/.tito/packages/python-productmd index 7d36413..af8d66b 100644 --- a/.tito/packages/python-productmd +++ b/.tito/packages/python-productmd @@ -1 +1 @@ -1.27-1 ./ +1.28-1 ./ diff --git a/productmd/__init__.py b/productmd/__init__.py index fd5e6cf..1ec0b8d 100644 --- a/productmd/__init__.py +++ b/productmd/__init__.py @@ -19,7 +19,7 @@ # Note this file is templated with Tito. Please make changes to # .tito/templates/__init__.py.in in Git. -__version__ = '1.27' +__version__ = '1.28' from .compose import Compose # noqa from .composeinfo import ComposeInfo # noqa diff --git a/python-productmd.spec b/python-productmd.spec index f865c8e..7d6a694 100644 --- a/python-productmd.spec +++ b/python-productmd.spec @@ -6,7 +6,7 @@ %bcond_without python3 Name: python-productmd -Version: 1.27 +Version: 1.28 Release: 1%{?dist} Summary: Library providing parsers for metadata related to OS installation @@ -90,6 +90,11 @@ Requires: python%{python3_pkgversion}-six %endif %changelog +* Fri Sep 25 2020 Lubomír Sedlář 1.28-1 +- Add 'development' compose type for non-production version of compose. + (jkaluza@redhat.com) +- Use tar.gz for source distribution (lsedlar@redhat.com) + * Tue Aug 18 2020 Haibo Lin 1.27-1 - Fix VariantBase._validate_variants() (hlin@redhat.com) - Fix validation for optional variant (hlin@redhat.com) diff --git a/setup.py b/setup.py index 46f552b..b7095d0 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name = "productmd", - version = "1.27", + version = "1.28", description = "Product, compose and installation media metadata library", url = "https://github.com/release-engineering/productmd", author = "Daniel Mach",