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
commit83250d3a6f78d80c3eb7214ca2e2a19e4ed0eb7f (patch)
tree6dcb9e2e65db470cb7ac817528a48492d1eafd85
parent2d151cd83e5d169ecc874001aa10bb6dc6093718 (diff)
downloadpylint-git-83250d3a6f78d80c3eb7214ca2e2a19e4ed0eb7f.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 6136d891e..cb2be4aed 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 cb6fc69ba..80055e0f4 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',
]