summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt1
-rw-r--r--doc/whatsnew/2/2.14/full.rst8
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
4 files changed, 10 insertions, 3 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 2eff175a8..a0552db18 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -371,6 +371,7 @@ contributors:
- Peter Bittner <django@bittner.it>
- Peter Aronoff <peter@aronoff.org>
- Paul Cochrane <paul@liekut.de>
+- Paul Lichtenberger <paul.lichtenberger.rgbg@gmail.com>
- Patrik <patrik.mrx@gmail.com>
- Pascal Corpet <pcorpet@users.noreply.github.com>
- Pablo Galindo Salgado <Pablogsal@gmail.com>
diff --git a/doc/whatsnew/2/2.14/full.rst b/doc/whatsnew/2/2.14/full.rst
index 1d9578b20..758470c59 100644
--- a/doc/whatsnew/2/2.14/full.rst
+++ b/doc/whatsnew/2/2.14/full.rst
@@ -1,11 +1,17 @@
Full changelog
==============
-What's New in Pylint 2.14.2?
+What's New in Pylint 2.14.3?
----------------------------
Release date: TBA
+
+What's New in Pylint 2.14.2?
+----------------------------
+Release date: 2022-06-15
+
+
* Fixed a false positive for ``unused-variable`` when a function returns an
``argparse.Namespace`` object.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 854367eb7..8900cb202 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.14.1"
+__version__ = "2.14.2"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index b9c882c37..ed3a40867 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.14.1"
+current = "2.14.2"
regex = '''
^(?P<major>0|[1-9]\d*)
\.