diff --git a/CHANGELOG b/CHANGELOG index 3c507e1..303aa19 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +v 1.4.0 (20 Feb 2019) +- Support Linchpin 1.6.2 +- Support RHEL 8 slaves +- Upgrade to Python 3 for testing everything we can +- upgrade ansible-lint +- Fix rpm key import timeout +- Fix Jenkins session timeout configuration being ignored + v 1.3.0 (20 Sep 2018) - Bump default Jenkins to 2.121 - Update plugins for 2.121 compatibility diff --git a/setup.py b/setup.py index e1f0d31..65b329b 100644 --- a/setup.py +++ b/setup.py @@ -7,21 +7,22 @@ setup( name='cinch', - version='1.3.0', + version='1.4.0', description='Cinch continuous integration setup', long_description=description, url='https://github.com/RedHatQE/cinch', author='RedHatQE', license='GPLv3', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Intended Audience :: Information Technology', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Build Tools', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Programming Language :: Python :: 2.7' + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3' ], keywords='continuous integration, ci, jenkins', packages=find_packages(exclude=('library', 'bin')),