Skip to content

Commit 2c6065a

Browse files
authored
Release 1.4.0 (#248)
* Release 1.4.0 * update changelog with version 1.4.0 changes
1 parent f585670 commit 2c6065a

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v 1.4.0 (20 Feb 2019)
2+
- Support Linchpin 1.6.2
3+
- Support RHEL 8 slaves
4+
- Upgrade to Python 3 for testing everything we can
5+
- upgrade ansible-lint
6+
- Fix rpm key import timeout
7+
- Fix Jenkins session timeout configuration being ignored
8+
19
v 1.3.0 (20 Sep 2018)
210
- Bump default Jenkins to 2.121
311
- Update plugins for 2.121 compatibility

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,22 @@
77

88
setup(
99
name='cinch',
10-
version='1.3.0',
10+
version='1.4.0',
1111
description='Cinch continuous integration setup',
1212
long_description=description,
1313
url='https://github.com/RedHatQE/cinch',
1414
author='RedHatQE',
1515
license='GPLv3',
1616
classifiers=[
17-
'Development Status :: 4 - Beta',
17+
'Development Status :: 5 - Production/Stable',
1818
'Intended Audience :: Developers',
1919
'Intended Audience :: Information Technology',
2020
'Topic :: Software Development :: Quality Assurance',
2121
'Topic :: Software Development :: Testing',
2222
'Topic :: Software Development :: Build Tools',
2323
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
24-
'Programming Language :: Python :: 2.7'
24+
'Programming Language :: Python :: 2.7',
25+
'Programming Language :: Python :: 3'
2526
],
2627
keywords='continuous integration, ci, jenkins',
2728
packages=find_packages(exclude=('library', 'bin')),

0 commit comments

Comments
 (0)