diff options
| author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 16:15:51 +0100 |
|---|---|---|
| committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-16 16:15:51 +0100 |
| commit | ade1ff5ecd0365bd376001691b73ea7a594b0208 (patch) | |
| tree | 6d6f3f10ca69badbd6021d5990f6280ef3215704 | |
| parent | 555d700fd9807d21405d00fd747c11787b796134 (diff) | |
| download | astroid-git-ade1ff5ecd0365bd376001691b73ea7a594b0208.tar.gz | |
prepare 0.21.1
| -rw-r--r-- | ChangeLog | 8 | ||||
| -rw-r--r-- | __pkginfo__.py | 2 | ||||
| -rw-r--r-- | debian/changelog | 6 |
3 files changed, 15 insertions, 1 deletions
@@ -1,6 +1,14 @@ Change log for the astng package ================================ +2010-12-16 -- 0.21.1 + + * python3: handle file encoding; fix a lot of tests + + * fix #52006: "True" and "False" can be assigned as variable in Python2x + * fix #8847: pylint doesn't understand function attributes at all + * fix #8774: iterator / generator / next method + 2010-11-15 -- 0.21.0 * python3.x: first python3.x release diff --git a/__pkginfo__.py b/__pkginfo__.py index 12d0d9dc..f29d646a 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -24,7 +24,7 @@ distname = 'logilab-astng' modname = 'astng' subpackage_of = 'logilab' -numversion = (0, 21, 0) +numversion = (0, 21, 1) version = '.'.join([str(num) for num in numversion]) install_requires = ['logilab-common >= 0.53.0'] diff --git a/debian/changelog b/debian/changelog index 07752ac5..1e8e3c1e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-astng (0.21.1-1) unstable; urgency=low + + * new upstream release + + -- Émile Anclin <emile.anclin@logilab.fr> Thu, 16 Dec 2010 13:43:29 +0100 + logilab-astng (0.21.0-1) unstable; urgency=low * new upstream release |
