summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-04-05 08:52:37 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-04-05 08:52:37 +0200
commit819bd049aa166f19be6af7c53dfc0e783d545e16 (patch)
tree0ddd33ac2816f9e8cf03df12a61cdda44d84ccf3
parente38f8abf294834c1512b1e30a21895a59e88c9ad (diff)
downloadastroid-git-astroid-1.6.3.tar.gz
Prepare 1.6.3astroid-1.6.3
-rw-r--r--ChangeLog12
-rw-r--r--astroid/__pkginfo__.py2
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index af8976f2..7e37dfd8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,18 @@
Change log for the astroid package (used to be astng)
=====================================================
+2018-04-05 -- 1.6.3
+
+ * Fixes nested namespace package import for old-style namespace packages
+
+ * Use .path for inferring a module's __path__ attribute. Close #528
+
+ * Improve the six urllib functions for Python 2 by setting them as instance attributes
+
+ Because they were at the class level, we were considering them BoundMethods, resulting
+ in a too-many-function-args error when calling these functions.
+ Close PyCQA/pylint#1965
+
2018-03-16 -- 1.6.2
* Fix submodule imports from six
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index c2e1798d..7d2f732c 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -16,7 +16,7 @@ distname = 'astroid'
modname = 'astroid'
-version = '1.6.2'
+version = '1.6.3'
numversion = tuple(map(int, version.split('.')))
extras_require = {}