Skip to content

Commit

Permalink
Prepare 2.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed May 21, 2018
1 parent b0f6184 commit b9565b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
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',
Expand Down

0 comments on commit b9565b1

Please sign in to comment.