diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | astroid/__pkginfo__.py | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -2,6 +2,14 @@ astroid's ChangeLog =================== +What's New in astroid 2.2.5? +============================ +Release Date: 2019-03-08 + +* The last except handler wins when inferring variables bound in an except handler. + + Close PyCQA/pylint#2777, PyCQA/pylint#2802 + What's New in astroid 2.2.4? ============================ Release Date: 2019-03-05 diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 66c64659..a1f58a84 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -21,7 +21,7 @@ distname = "astroid" modname = "astroid" -version = "2.2.4" +version = "2.2.5" numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit()) extras_require = {} |