Prepare 1.4.2 release

This commit is contained in:
Claudiu Popa 2015-03-11 14:50:14 +02:00
parent 060c5d3f16
commit 95d4de5898
3 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,8 @@
ChangeLog for Pylint
--------------------
RELEASE DATE -- VERSION
2015-03-11 -- 1.4.2
* Don't require a docstring for empty modules. Closes issue #261.
* Fix a false positive with `too-few-format-args` string warning,

View File

@ -1,3 +1,3 @@
python-logilab-common (>= 0.19.0)
python-astroid (>= 1.3.3)
python-astroid (>= 1.3.5)
python-tk

View File

@ -19,10 +19,10 @@ from __future__ import absolute_import
modname = distname = 'pylint'
numversion = (1, 4, 1)
numversion = (1, 4, 2)
version = '.'.join([str(num) for num in numversion])
install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.3', 'six']
install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.5', 'six']
license = 'GPL'
description = "python code static checker"