diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -2,7 +2,8 @@ ChangeLog for Pylint -------------------- --- +2016-01-15 -- 1.5.4 + * Merge StringMethodChecker with StringFormatChecker. This fixes a bug where disabling all the messages and enabling only a handful of messages from the StringFormatChecker would have resulted in no diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 251cb2707..c7bbee51e 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -23,7 +23,7 @@ from os.path import join modname = distname = 'pylint' -numversion = (1, 5, 3) +numversion = (1, 5, 4) version = '.'.join([str(num) for num in numversion]) install_requires = [ |