From 95d4de589871d0419eea2fa151eb84846eafc60b Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Wed, 11 Mar 2015 14:50:14 +0200 Subject: [PATCH] Prepare 1.4.2 release --- ChangeLog | 3 ++- DEPENDS | 2 +- pylint/__pkginfo__.py | 4 ++-- 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"