summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-03-11 14:50:14 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-03-11 14:50:14 +0200
commit95d4de589871d0419eea2fa151eb84846eafc60b (patch)
treeec8dcb9b2f80feabf29487ec5db5b856580e71d8
parent060c5d3f16b98b68d4df382829950d265d69041d (diff)
downloadpylint-git-pylint-1.4.2.tar.gz
Prepare 1.4.2 releasepylint-1.4.2
-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 30a2d281f..6860e4ceb 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 e4a2f52ed..3a33b857e 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 ebbbb794c..89c50a308 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"