summaryrefslogtreecommitdiff
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
parent3dfa14fd123a7608f6a0ce00fe845a77c6c897eb (diff)
downloadpylint-git-08bac36eeb5006c7eb2e574049566e232bdbf5ed.tar.gz
Bump pylint to 2.16.3, update changelog (#8375)v2.16.3
-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
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
-rw-r--r--towncrier.toml2
6 files changed, 27 insertions, 9 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
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 360381f39..a67fa4853 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -9,7 +9,7 @@ It's updated via tbump, do not modify.
from __future__ import annotations
-__version__ = "2.16.2"
+__version__ = "2.16.3"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index d3f12af84..c4d04acf2 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.16.2"
+current = "2.16.3"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/towncrier.toml b/towncrier.toml
index 9192176aa..a65d4681d 100644
--- a/towncrier.toml
+++ b/towncrier.toml
@@ -1,5 +1,5 @@
[tool.towncrier]
-version = "2.16.2"
+version = "2.16.3"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/2/2.16/index.rst"
template = "doc/whatsnew/fragments/_template.rst"