diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-03-16 18:08:59 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-03-16 18:08:59 +0100 |
commit | c7cc94d6a5e1541bc235a6ba5579c3a61933dca3 (patch) | |
tree | c189c4ecc287f6b14cbab06270f146af2f8968cd | |
parent | d5227560bb7afd5b52c827976d124b6c63dd80cf (diff) | |
download | pylint-git-c7cc94d6a5e1541bc235a6ba5579c3a61933dca3.tar.gz |
Prepare 1.8.3 releasepylint-1.8.3
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ Pylint's ChangeLog What's New in Pylint 1.8.3? ========================== -Release date: - +Release date: 2018-03-16 * Fix false positive ``inconsistent-return-statements`` message when a function is defined under an if statement. diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 324b3693b..c2511f833 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -27,7 +27,7 @@ from setuptools import __version__ as setuptools_version modname = distname = 'pylint' -numversion = (1, 8, 2) +numversion = (1, 8, 3) version = '.'.join([str(num) for num in numversion]) install_requires = [ |