summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-23 11:06:19 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2014-11-23 11:06:19 +0200
commitb726926cb0e448fd9a5b96d3d3cda124aa51daa4 (patch)
treedfd1e5d2d1dbe2391fde3db0abbf410d01a520fd
parente5230b7d40eaac9e09d5c216eeefe3b1aa731729 (diff)
downloadpylint-b726926cb0e448fd9a5b96d3d3cda124aa51daa4.tar.gz
Prepare the 1.4.0 release.pylint-1.4
-rw-r--r--ChangeLog3
-rw-r--r--__pkginfo__.py4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f590d1d..7b206c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
ChangeLog for Pylint
====================
---
+2014-11-23 -- 1.4.0
+
* Added new options for controlling the loading of C extensions.
By default, only C extensions from the stdlib will be loaded
into the active Python interpreter for inspection, because they
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 51ffe6a..acca3b7 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -19,10 +19,10 @@ from __future__ import absolute_import
modname = distname = 'pylint'
-numversion = (1, 3, 0)
+numversion = (1, 4, 0)
version = '.'.join([str(num) for num in numversion])
-install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2', 'six']
+install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.3.2', 'six']
license = 'GPL'
description = "python code static checker"