summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2007-02-22 11:29:28 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2007-02-22 11:29:28 +0100
commitefc4905daef466c3d4727a3f5c683b445d211d6c (patch)
treebbdac9bfee5aeaf71bdd1a9fc40b20e31c52cd27
parentf85d069803c323adaac855f2d0f4e99e85c13332 (diff)
downloadpylint-git-efc4905daef466c3d4727a3f5c683b445d211d6c.tar.gz
prepare version
-rw-r--r--ChangeLog25
-rw-r--r--__pkginfo__.py2
-rw-r--r--debian/changelog6
3 files changed, 22 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index c90500221..7da8aadd4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,25 +1,30 @@
ChangeLog for PyLint
====================
- --
- * fix #3184: crashes on "return" outside function. New E0104 and E0105
- messages introduced to respectivly warn about "return" and "yield"
- outside function or method
- * fix #3205: W0704 false positive
+2007-02-22 -- 0.13.0
+ * new E0104 and E0105 messages introduced to respectivly warn about
+ "return" and "yield" outside function or method
* new E0106 message when "yield" and "return something" are mixed in a
function or method
* new W0107 message for unnecessary pass statement
* new W0614 message to differentiate between unused 'import X' and
- unused 'from X import *" (#3209, patch submitted by Daniel Drake)
- * implement #3285: reported for Visual Studio line number reporting (msvs)
+ unused 'from X import *" (#3209, patch submitted by Daniel Drake)
+ * msvs reporter for Visual Studio line number reporting (#3285)
* allow disable-all option inline (#3218, patch submitted by Daniel Drake)
- * included Daniel Drake's patch to have a different message E1003 instead of
+ * included Daniel Drake's patch to have a different message E1003 instead of
E1001 when a missing member is found but an inference failure has been
detected
+ * --init-hook option to call arbitray code necessary to set
+ environment (eg sys.path) (#3156)
* One more Daniel's patch fixing a command line option parsing
problem, this'll definitly be the DDrake release :)
-
-
+ * fix #3184: crashes on "return" outside function
+ * fix #3205: W0704 false positive
+ * fix #3123: W0212 false positive on static method
+ * fix #2485: W0222 false positive
+ * fix #3259: when a message is explicitly enabled, check the checker
+ emitting it is enabled
+
2006-11-23 -- 0.12.2
* fix #3143: W0233 bug w/ YES objects
* fix #3119: Off-by-one error counting lines in a file
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 6ad7dc8cd..dccca3969 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -18,7 +18,7 @@
modname = 'pylint'
-numversion = (0, 12, 2)
+numversion = (0, 13, 0)
version = '.'.join([str(num) for num in numversion])
license = 'GPL'
diff --git a/debian/changelog b/debian/changelog
index 8f3bb5096..ef2aad4ec 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+pylint (0.13.0-1) unstable; urgency=low
+
+ * new upstream release
+
+ -- Sylvain Thénault <sylvain.thenault@logilab.fr> Thu, 22 Feb 2007 11:28:23 +0100
+
pylint (0.12.2-1) unstable; urgency=low
* new upstream release