diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-21 11:44:19 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-21 11:44:19 +0200 |
commit | b9565b182de3ee6190057b0d42a8adb086e5f5ef (patch) | |
tree | e462cff1bed03602825e2c319b602d6af2d9a3e9 | |
parent | b0f6184e03182736f8423441dfb87985da28e209 (diff) | |
download | pylint-git-pylint-2.0.dev.tar.gz |
Prepare 2.0-devpylint-2.0.dev
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | pylint/__pkginfo__.py | 2 |
2 files changed, 6 insertions, 5 deletions
@@ -1,14 +1,16 @@ ------------------ Pylint's ChangeLog ------------------ + What's New in Pylint 2.0? ========================= + +Release date: |TBA| + * Add a new check 'useless-import-alias'. Close #2052 -Release date: |TBA| - * Don't warn for ``missing-type-doc`` and/or ``missing-return-type-doc``, if type annotations exist on the function signature for a parameter and/or return type. Close #2083 @@ -216,8 +218,7 @@ Release date: |TBA| Close #1120 - * Fix false positive undefined-variable for lambda argument in - class definitions + * Fix false positive undefined-variable for lambda argument in class definitions Close #1824 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 7fae75ff9..59ac4a3ef 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -24,7 +24,7 @@ from os.path import join modname = distname = 'pylint' numversion = (2, 0, 0) -version = '.'.join([str(num) for num in numversion]) +version = '.'.join(str(num) for num in numversion) + '.dev' install_requires = [ 'astroid>=1.6', |