Skip to content

Commit

Permalink
Bump to 2.2.3 and add ChangeLog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed Mar 4, 2019
1 parent 5c68e36 commit 5443588
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion astroid/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

modname = "astroid"

version = "2.2.2"
version = "2.2.3"
numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit())

extras_require = {}
Expand Down

0 comments on commit 5443588

Please sign in to comment.