summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 21:37:03 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 21:54:26 +0200
commit52027cbde2b59f49667af14baaf9b31b13e34b63 (patch)
tree93a220a51b6e6d94278312a9ecc9e50143863bab
parenta56b52550b88ba4234f1332b54c5cfd3e49368b3 (diff)
downloadpylint-git-52027cbde2b59f49667af14baaf9b31b13e34b63.tar.gz
Move back to a dev version and upgrade documentation
-rw-r--r--doc/whatsnew/2.10.rst18
-rw-r--r--doc/whatsnew/2.9.rst15
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
4 files changed, 34 insertions, 3 deletions
diff --git a/doc/whatsnew/2.10.rst b/doc/whatsnew/2.10.rst
new file mode 100644
index 000000000..6e119650c
--- /dev/null
+++ b/doc/whatsnew/2.10.rst
@@ -0,0 +1,18 @@
+***************************
+ What's New in Pylint 2.10
+***************************
+
+:Release: 2.10
+:Date: TBA
+
+Summary -- Release highlights
+=============================
+
+
+New checkers
+============
+
+
+
+Other Changes
+=============
diff --git a/doc/whatsnew/2.9.rst b/doc/whatsnew/2.9.rst
index accce17f2..28caf70b2 100644
--- a/doc/whatsnew/2.9.rst
+++ b/doc/whatsnew/2.9.rst
@@ -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
============
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 47b145cb8..40ab47535 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -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:
diff --git a/tbump.toml b/tbump.toml
index 915661cfa..7d932da23 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -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*)
\.