summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = {}