summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--pylint/__pkginfo__.py2
2 files changed, 6 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 4365d0cd3..bf6213d51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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',