diff options
| author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2010-09-10 11:58:00 +0200 |
|---|---|---|
| committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2010-09-10 11:58:00 +0200 |
| commit | 8e227d79629cdc0021f1cc66f199e5f9ce297b3a (patch) | |
| tree | 22878d7963d231762f84f5d70d03908a16cf6e83 | |
| parent | be649cbfc8bfd6f51e66bbd6a22ab8870874f55d (diff) | |
| download | astroid-git-8e227d79629cdc0021f1cc66f199e5f9ce297b3a.tar.gz | |
0.20.2
--HG--
branch : stable
| -rw-r--r-- | ChangeLog | 14 | ||||
| -rw-r--r-- | __pkginfo__.py | 22 | ||||
| -rw-r--r-- | debian/changelog | 6 |
3 files changed, 22 insertions, 20 deletions
@@ -1,6 +1,20 @@ Change log for the astng package ================================ +2010-09-10 -- 0.20.2 + * fix astng building bug: we've to set module.package flag at the node + creation time otherwise we'll miss this information when infering relative + import during the build process (this should fix for instance some problems + with numpy) + + * added __subclasses__ to special class attribute + + * fix Class.interfaces so that no InferenceError raised on empty __implements__ + + * yield YES on multiplication of tuple/list with non valid operand + + + 2010-05-11 -- 0.20.1 * fix licensing to LGPL diff --git a/__pkginfo__.py b/__pkginfo__.py index ab5ff68a..2b50fa99 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -1,18 +1,3 @@ -# Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE). -# http://www.logilab.fr/ -- mailto:contact@logilab.fr -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU Lesser General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. -# -# This program is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., -# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr # copyright 2003-2010 Sylvain Thenault, all rights reserved. @@ -32,17 +17,14 @@ # # You should have received a copy of the GNU Lesser General Public License along # with logilab-astng. If not, see <http://www.gnu.org/licenses/>. -""" -logilab.astng packaging information - -""" +"""logilab.astng packaging information""" distname = 'logilab-astng' modname = 'astng' subpackage_of = 'logilab' -numversion = (0, 20, 1) +numversion = (0, 20, 2) version = '.'.join([str(num) for num in numversion]) install_requires = ['logilab-common >= 0.49.0'] diff --git a/debian/changelog b/debian/changelog index b9cdf222..b82f34f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-astng (0.20.2-1) unstable; urgency=low + + * new upstream release + + -- + logilab-astng (0.20.1-1) unstable; urgency=low * new upstream release |
