summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-02 16:00:38 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-02 16:00:38 +0200
commit13b1fd26f27f156eee59e075cba9f4c9f5cec557 (patch)
treeb0fbfc94ac2ddf62a2befcf63a23b177131030b0
parentc02e463445e5a929a9a376764118b32dcab080c1 (diff)
downloadpylint-13b1fd26f27f156eee59e075cba9f4c9f5cec557.tar.gz
Prepare a small bug fix release.
-rw-r--r--ChangeLog3
-rw-r--r--pylint/__pkginfo__.py4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6136d89..cb2be4a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
ChangeLog for Pylint
--------------------
---
+2015-12-02 -- 1.5.1
+
* Don't emit unsubscriptable-object if the node is found
inside an abstract class. Closes issue #685.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index cb6fc69..80055e0 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -23,11 +23,11 @@ from os.path import join
modname = distname = 'pylint'
-numversion = (1, 5, 0)
+numversion = (1, 5, 1)
version = '.'.join([str(num) for num in numversion])
install_requires = [
- 'astroid>=1.4.0',
+ 'astroid>=1.4.1',
'six',
]