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
commitba998d7a4e5fce0ea3a3e701ff446bbe4ca406b5 (patch)
tree51c95b0bb5b907ecdbf252a43e7555458306a24f
parentd53cbda631481f2d20f5de7bd3326cc58aa586f5 (diff)
downloadpylint-ba998d7a4e5fce0ea3a3e701ff446bbe4ca406b5.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 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"