summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-03 11:24:26 +0100
committerGitHub <noreply@github.com>2023-03-03 11:24:26 +0100
commit08bac36eeb5006c7eb2e574049566e232bdbf5ed (patch)
tree1a10b77807195c9d54ee842bebfeeb1dc3c88e8a /doc
parent3dfa14fd123a7608f6a0ce00fe845a77c6c897eb (diff)
downloadpylint-git-08bac36eeb5006c7eb2e574049566e232bdbf5ed.tar.gz
Bump pylint to 2.16.3, update changelog (#8375)v2.16.3
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2/2.16/index.rst24
-rw-r--r--doc/whatsnew/fragments/8307.bugfix3
-rw-r--r--doc/whatsnew/fragments/8370.false_positive3
3 files changed, 24 insertions, 6 deletions
diff --git a/doc/whatsnew/2/2.16/index.rst b/doc/whatsnew/2/2.16/index.rst
index 45ff2833d..d2ad86ab3 100644
--- a/doc/whatsnew/2/2.16/index.rst
+++ b/doc/whatsnew/2/2.16/index.rst
@@ -32,6 +32,30 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t
.. towncrier release notes start
+What's new in Pylint 2.16.3?
+----------------------------
+Release date: 2023-03-03
+
+
+False Positives Fixed
+---------------------
+
+- Fix false positive for ``wrong-spelling-in-comment`` with class names in a
+ python 2 type comment.
+
+ Closes #8370 (`#8370 <https://github.com/PyCQA/pylint/issues/8370>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- Prevent emitting ``invalid-name`` for the line on which a ``global``
+ statement is declared.
+
+ Closes #8307 (`#8307 <https://github.com/PyCQA/pylint/issues/8307>`_)
+
+
What's new in Pylint 2.16.2?
----------------------------
Release date: 2023-02-13
diff --git a/doc/whatsnew/fragments/8307.bugfix b/doc/whatsnew/fragments/8307.bugfix
deleted file mode 100644
index f86f7b67b..000000000
--- a/doc/whatsnew/fragments/8307.bugfix
+++ /dev/null
@@ -1,3 +0,0 @@
-Prevent emitting ``invalid-name`` for the line on which a ``global`` statement is declared.
-
-Closes #8307
diff --git a/doc/whatsnew/fragments/8370.false_positive b/doc/whatsnew/fragments/8370.false_positive
deleted file mode 100644
index a641ecbbf..000000000
--- a/doc/whatsnew/fragments/8370.false_positive
+++ /dev/null
@@ -1,3 +0,0 @@
-Fix false positive for ``wrong-spelling-in-comment`` with class names in a python 2 type comment.
-
-Closes #8370