From 4c41a984c1deb60dca9dac1ee06c6b99f66216f7 Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Tue, 19 Jul 2016 19:23:57 +0300 Subject: Prepare 1.6.4 --- ChangeLog | 8 +++++++- pylint/__pkginfo__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 32d28f45f..64cd9ff84 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,7 +5,13 @@ Pylint NEWS What's new in Pylint 1.6.4? =========================== -Release date: tba +Release date: 2016-07-19 + + * Recurse into all the ancestors when checking if an object is an exception + + Since we were going only into the first level, we weren't inferring + when a class used a metaclass which defined a base Exception class + for the aforementioned class. What's new in Pylint 1.6.3? diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index cfcaf9574..953ea953b 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -12,7 +12,7 @@ from os.path import join modname = distname = 'pylint' -numversion = (1, 6, 3) +numversion = (1, 6, 4) version = '.'.join([str(num) for num in numversion]) install_requires = [ -- cgit v1.2.1