summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog15
-rw-r--r--astroid/__pkginfo__.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b5ccc81f..2d203d5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,21 @@
astroid's ChangeLog
===================
+What's New in astroid 2.2.3?
+============================
+Release Date: 2019-03-03
+
+* Replace `any` with `uninferable` when returning values from `numpy` transform
+
+ Turns out that this was conflicting with the `any` builtin, while the original
+ intention was to return a value that cannot be inferred, until we have support
+ for types.
+
+ This should fix a couple of false positives on pylint's side where the return
+ value of numpy functions was considered to be itself a function.
+
+ Close PyCQA/pylint#2784
+
What's New in astroid 2.2.2?
============================
Release Date: 2019-03-02
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index 3cd80054..6185ffca 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -21,7 +21,7 @@ distname = "astroid"
modname = "astroid"
-version = "2.2.2"
+version = "2.2.3"
numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit())
extras_require = {}