diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | __pkginfo__.py | 4 | ||||
| -rw-r--r-- | debian.py3k/control | 3 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | debian/control | 2 |
5 files changed, 16 insertions, 5 deletions
@@ -1,6 +1,12 @@ Change log for the astng package ================================ +2010-11-15 -- 0.21.0 + * python3.x: first python3.x release + + * fix #37105: Crash on AttributeError: 'NoneType' object has no attribute '_infer_name' + + * python2.4: drop python < 2.4 support 2010-10-27 -- 0.20.4 diff --git a/__pkginfo__.py b/__pkginfo__.py index 7fe7c162..12d0d9dc 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -24,10 +24,10 @@ distname = 'logilab-astng' modname = 'astng' subpackage_of = 'logilab' -numversion = (0, 20, 4) +numversion = (0, 21, 0) version = '.'.join([str(num) for num in numversion]) -install_requires = ['logilab-common >= 0.52.1'] +install_requires = ['logilab-common >= 0.53.0'] license = 'LGPL' diff --git a/debian.py3k/control b/debian.py3k/control index 99fef0a7..b1353379 100644 --- a/debian.py3k/control +++ b/debian.py3k/control @@ -19,8 +19,7 @@ Description: rebuild a new abstract syntax tree from Python's ast The aim of this module is to provide a common base representation of Python source code for projects such as pyreverse or pylint. . - It rebuilds the tree generated by the compiler.ast [1] module (python <= 2.4) - or by the builtin _ast module (python >= 2.5) by recursively walking down the + It rebuilds the tree generated by the _ast module by recursively walking down the AST and building an extended ast (let's call it astng ;). The new node classes have additional methods and attributes for different usages. Furthermore, astng builds partial trees by inspecting living objects. diff --git a/debian/changelog b/debian/changelog index 9d80add6..07752ac5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-astng (0.21.0-1) unstable; urgency=low + + * new upstream release + + -- Émile Anclin <emile.anclin@logilab.fr> Mon, 15 Nov 2010 15:43:29 +0100 + logilab-astng (0.20.4-1) unstable; urgency=low * new upstream release diff --git a/debian/control b/debian/control index 2c0bfedc..b4c21e39 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/logilab-astng Package: python-logilab-astng Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.52.1-1) +Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.53.0-1) XB-Python-Version: ${python:Versions} Description: rebuild a new abstract syntax tree from Python's ast The aim of this module is to provide a common base representation of |
