diff --git a/CHANGES b/CHANGES index 62273468..25e88cb5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +0.17.0 +* planex-clone: Add ability to clone repositories with patchqueues + 0.16.2 * planex-clone: Fix typo in Jenkinsfile fragment template diff --git a/planex.spec b/planex.spec index 803ccf8a..b1044d31 100644 --- a/planex.spec +++ b/planex.spec @@ -1,6 +1,6 @@ Summary: RPM build tool Name: planex -Version: 0.16.2 +Version: 0.17.0 Release: 1%{?dist} URL: http://github.com/xenserver/planex Source0: http://github.com/xenserver/planex/archive/v%{version}/%{name}-%{version}.tar.gz @@ -53,6 +53,9 @@ sed -i "s/\(version='\)[^'\"]\+/\1%{version}-%{release}/g" setup.py %config%{_sysconfdir}/bash_completion.d/planex.bash %changelog +* Mon Feb 20 2017 Euan Harris - 0.17.0-1 +- planex-clone: Add ability to clone repositories with patchqueues + * Tue Feb 7 2017 Euan Harris - 0.16.2-1 - planex-clone: Fix typo in Jenkinsfile fragment template diff --git a/setup.py b/setup.py index dbc433c1..133eeaa1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup setup(name='planex', - version='0.16.2', + version='0.17.0', packages=['planex', 'planex.cmd'], include_package_data=True, package_data={'planex': ['Makefile.rules']},