summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-03-08 17:14:08 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-08 17:14:08 +0100
commit01a25f31962dd5017a141a6450859a7c1c82722d (patch)
treebd0f77f347ed6ec496700df4bb671138369c1a15
parentf33c5a0cdf286d010175ab41e44d790c3d3f63ea (diff)
downloadastroid-git-2.2.tar.gz
Prepare 2.2.5astroid-2.2.52.2
-rw-r--r--ChangeLog8
-rw-r--r--astroid/__pkginfo__.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index baea4496..a646337a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 = {}