Skip to content

Commit

Permalink
Move back to a dev version and upgrade documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 29, 2021
1 parent a56b525 commit 52027cb
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
18 changes: 18 additions & 0 deletions doc/whatsnew/2.10.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
***************************
What's New in Pylint 2.10
***************************

:Release: 2.10
:Date: TBA

Summary -- Release highlights
=============================


New checkers
============



Other Changes
=============
15 changes: 14 additions & 1 deletion doc/whatsnew/2.9.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,24 @@
**************************

:Release: 2.9
:Date: TBA
:Date: 2021-06-29

Summary -- Release highlights
=============================

Pylint is now compatible with python 3.10.

A lot of new checks have been added, some non-opinionated performance warnings
like ``use-maxsplit-arg``, some consensual style warnings like
``unnecessary-dict-index-lookup`` or new deprecation checks.

We're aiming to reduce pylint noise for first time users and making some
new checks optional is a step in that direction. In order to do that we
created an optional code style checker that can be loaded using
``pylint.extensions.code_style`` with the ``load-plugins`` options.
More than ever, if as a veteran you want the most checks you can possibly get,
[you should check the list of pylint extensions.](http://pylint.pycqa.org/en/latest/technical_reference/extensions.html#optional-pylint-checkers-in-the-extensions-module).


New checkers
============
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
from typing import Tuple

__version__ = "2.9.0"
__version__ = "2.9.1-dev0"


def get_numversion_from_version(v: str) -> Tuple:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.9.0"
current = "2.9.1-dev0"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit 52027cb

Please sign in to comment.