From 3012d6617d510efde13ce283b2e3dfd6b4f98827 Mon Sep 17 00:00:00 2001 From: Euan Harris Date: Thu, 20 Apr 2017 15:42:07 +0100 Subject: [PATCH] planex: Prepare for 0.21.0 release Signed-off-by: Euan Harris --- CHANGES | 11 +++++++++++ planex.spec | 13 ++++++++++++- setup.py | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index b8505286..f0b67bb0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +0.21.0 +* Add planex-create-mock-config, which constructs a mock configuration + file from the system yum configuration. +* planex-make-srpm: Add Provides: tags containing the Git hashes of the + sources used to build binary RPMs, if this information is available. +* Makfile.rules, planex-patchqueue: Always rebuild pinned patchqueue tarballs, + but short-circuit the rebuilding of dependent source and binary RPMs if the + contents of the patchqueue have not changed +* planex-clone: Continue if cloning one of a series of pinned repos fails +* Makefile.rules: add a dependency on the mock config + 0.20.0 * planex-build-mock: Add '--loopback-config-extra' option to pass extra lines to the loopback repository configuration diff --git a/planex.spec b/planex.spec index 40278622..7a6aa8b1 100644 --- a/planex.spec +++ b/planex.spec @@ -1,6 +1,6 @@ Summary: RPM build tool Name: planex -Version: 0.20.0 +Version: 0.21.0 Release: 1%{?dist} URL: http://github.com/xenserver/planex Source0: http://github.com/xenserver/planex/archive/v%{version}/%{name}-%{version}.tar.gz @@ -54,6 +54,17 @@ sed -i "s/\(version='\)[^'\"]\+/\1%{version}-%{release}/g" setup.py %config%{_sysconfdir}/bash_completion.d/planex.bash %changelog +* Thu Apr 20 2017 Euan Harris - 0.21.0-1 +- Add planex-create-mock-config, which constructs a mock configuration + file from the system yum configuration. +- planex-make-srpm: Add Provides: tags containing the Git hashes of the + sources used to build binary RPMs, if this information is available. +- Makfile.rules, planex-patchqueue: Always rebuild pinned patchqueue tarballs, + but short-circuit the rebuilding of dependent source and binary RPMs if the + contents of the patchqueue have not changed +- planex-clone: Continue if cloning one of a series of pinned repos fails +- Makefile.rules: add a dependency on the mock config + * Mon Mar 27 2017 Euan Harris - 0.20.0-1 - planex-build-mock: Add '--loopback-config-extra' option to pass extra lines to the loopback repository configuration diff --git a/setup.py b/setup.py index 21f010d8..a29e4a39 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup(name='planex', - version='0.20.0', + version='0.21.0', packages=['planex', 'planex.cmd'], include_package_data=True, package_data={'planex': ['Makefile.rules']},