diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | __pkginfo__.py | 4 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 2 |
4 files changed, 19 insertions, 5 deletions
@@ -2,14 +2,22 @@ ChangeLog for PyLint ==================== -- - + * command line updated (closes #9774, #9787, #9992, #22962): + * all enable-* / disable-* options have been merged into --enable / --disable + * BACKWARD INCOMPATIBLE CHANGE: short name of --errors-only becomes -E, -e being + affected to --enable + * pylint --help output much simplified, with --long-help available to get the + complete one + * revisited gui, thanks to students from Toronto university (they are great + contributors to this release!) * fix #21591: html reporter produces no output if reports is set to 'no' * fix #4581: not Missing docstring (C0111) warning if a method is overridden * fix #4683: Non-ASCII characters count double if utf8 encode * fix #9018: when using defining-attr-method, method order matters * fix #4595: Comma not followed by a space should not occurs on trailing comma in list/tuple/dict definition - + * fix #22585: [Patch] fix man warnings for pyreverse.1 manpage + * fix #20067: AttributeError: 'NoneType' object has no attribute 'name' with with 2010-03-01 -- 0.20.0 * fix #19498: fix windows batch file diff --git a/__pkginfo__.py b/__pkginfo__.py index b1bc3e350..2fd6dddc6 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -18,11 +18,11 @@ modname = distname = 'pylint' -numversion = (0, 20, 0) +numversion = (0, 21, 0) version = '.'.join([str(num) for num in numversion]) -install_requires = ['logilab-common >= 0.49.0', 'logilab-astng >= 0.20.0'] +install_requires = ['logilab-common >= 0.50.1', 'logilab-astng >= 0.20.1'] pyversions = ["2.3", "2.4", "2.5", '2.6'] # maybe 2.2 as well diff --git a/debian/changelog b/debian/changelog index fba605baa..4514c2ae9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +pylint (0.21.0-1) unstable; urgency=low + + * new upstream release + + -- Sylvain Thénault <sylvain.thenault@logilab.fr> Tue, 11 May 2010 12:27:09 +0200 + pylint (0.20.0-1) unstable; urgency=low * new upstream release diff --git a/debian/control b/debian/control index 18fa09527..299a26a92 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/pylint/trunk/ Package: pylint Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.49.0), python-logilab-astng (>= 0.20.0) +Depends: ${python:Depends}, ${misc:Depends}, python-logilab-common (>= 0.50.1), python-logilab-astng (>= 0.20.1) Recommends: python-tk XB-Python-Version: ${python:Versions} Conflicts: python2.2-pylint, python2.3-pylint, python2.4-pylint, pylint-common, pylint-test |