summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--DEPENDS2
-rw-r--r--pylint/__pkginfo__.py4
3 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 30a2d28..6860e4c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
diff --git a/DEPENDS b/DEPENDS
index e4a2f52..3a33b85 100644
--- a/DEPENDS
+++ b/DEPENDS
@@ -1,3 +1,3 @@
python-logilab-common (>= 0.19.0)
-python-astroid (>= 1.3.3)
+python-astroid (>= 1.3.5)
python-tk
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index ebbbb79..89c50a3 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -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"