summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-02-02 17:12:50 +0100
committerGitHub <noreply@github.com>2023-02-02 17:12:50 +0100
commitf48ec66d04429721ddfdf1613e33f6545a3da72e (patch)
tree316f2732e4549161221c2aa3604cac7b3497cb89
parent40f67116e4841bf8f8140950c61b582c7db59ae7 (diff)
downloadpylint-git-2.16.1.tar.gz
Bump pylint to 2.16.1, update changelog (#8166)v2.16.1
-rw-r--r--doc/whatsnew/2/2.16/index.rst14
-rw-r--r--doc/whatsnew/fragments/8161.bugfix3
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
-rw-r--r--towncrier.toml2
5 files changed, 17 insertions, 6 deletions
diff --git a/doc/whatsnew/2/2.16/index.rst b/doc/whatsnew/2/2.16/index.rst
index bb9c8b109..18f6579a6 100644
--- a/doc/whatsnew/2/2.16/index.rst
+++ b/doc/whatsnew/2/2.16/index.rst
@@ -32,6 +32,20 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t
.. towncrier release notes start
+What's new in Pylint 2.16.1?
+----------------------------
+Release date: 2023-02-02
+
+
+Other Bug Fixes
+---------------
+
+- Fix a crash happening for python interpreter < 3.9 following a failed typing
+ update.
+
+ Closes #8161 (`#8161 <https://github.com/PyCQA/pylint/issues/8161>`_)
+
+
What's new in Pylint 2.16.0?
----------------------------
Release date: 2023-02-01
diff --git a/doc/whatsnew/fragments/8161.bugfix b/doc/whatsnew/fragments/8161.bugfix
deleted file mode 100644
index 957099180..000000000
--- a/doc/whatsnew/fragments/8161.bugfix
+++ /dev/null
@@ -1,3 +0,0 @@
-Fix a crash happening for python interpreter < 3.9 following a failed typing update.
-
-Closes #8161
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index fb5ae7e93..91d783c56 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.0"
+__version__ = "2.16.1"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index 141a3b196..4f289fa26 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.16.0"
+current = "2.16.1"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/towncrier.toml b/towncrier.toml
index 51ea3d078..c225dbc38 100644
--- a/towncrier.toml
+++ b/towncrier.toml
@@ -1,5 +1,5 @@
[tool.towncrier]
-version = "2.16.0"
+version = "2.16.1"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/2/2.16/index.rst"
template = "doc/whatsnew/fragments/_template.rst"