diff --git a/koji-containerbuild.spec b/koji-containerbuild.spec index 888b3821..3221a1a4 100644 --- a/koji-containerbuild.spec +++ b/koji-containerbuild.spec @@ -15,7 +15,7 @@ %global module koji_containerbuild Name: koji-containerbuild -Version: 0.8.0 +Version: 0.9.0 Release: 1%{?dist} Summary: Koji support for building layered container images Group: Applications/System @@ -160,6 +160,15 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Nov 06 2020 Robert Cerven 0.9.0-1 +- Add unit test (ben.alkov@redhat.com) +- Trap OsbsValidationException, print it, and raise it as ContainerError + (ben.alkov@redhat.com) +- 'pytest-capturelog' is dead and must be removed (ben.alkov@redhat.com) +- builder: document space delimier for arch_override (kdreyer@redhat.com) +- pyrsistent support for Py 2 ends with release 0.16 (ben.alkov@redhat.com) +- [markdown] Use older version of mdl (0.9) (mbasti@redhat.com) + * Wed Jul 29 2020 Robert Cerven 0.8.0-1 - Early check for missing branch, and scratch with isolated build conflict (rcerven@redhat.com) diff --git a/rel-eng/packages/koji-containerbuild b/rel-eng/packages/koji-containerbuild index 3f8c4618..0c01db68 100644 --- a/rel-eng/packages/koji-containerbuild +++ b/rel-eng/packages/koji-containerbuild @@ -1 +1 @@ -0.8.0-1 ./ +0.9.0-1 ./ diff --git a/setup.py b/setup.py index 54104277..4658a66a 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def get_requirements(requirements_file='requirements.txt'): setup( name="koji-containerbuild", - version="0.8.0", + version="0.9.0", author="Pavol Babincak", author_email="pbabinca@redhat.com", description="Container build support for Koji buildsystem",