summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--ChangeLog8
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
4 files changed, 10 insertions, 4 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index d1f9e6fe8..dfbbfa83b 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -170,6 +170,7 @@ contributors:
* Added new check for useless `with threading.Lock():` statement
- Marcus Näslund <naslundx@gmail.com> (naslundx)
- Marco Forte <fortemarco.irl@gmail.com>
+- Joseph Young <80432516+jpy-git@users.noreply.github.com> (jpy-git)
- Ionel Maries Cristian <contact@ionelmc.ro>
- Gergely Kalmár <gergely.kalmar@logikal.jp>
- Daniel Harding <dharding@gmail.com>
@@ -202,7 +203,6 @@ contributors:
- Konstantin Manna <Konstantin@Manna.uno>
- Kai Mueller <15907922+kasium@users.noreply.github.com> (kasium)
- Joshua Cannon <joshdcannon@gmail.com>
-- Joseph Young <80432516+jpy-git@users.noreply.github.com> (jpy-git)
- John Leach <jfleach@jfleach.com>
- James Morgensen <james.morgensen@gmail.com>: ignored-modules option applies to import errors.
- Jaehoon Hwang <jaehoonhwang@users.noreply.github.com> (jaehoonhwang)
diff --git a/ChangeLog b/ChangeLog
index 82b868c31..7a37597fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,10 +16,16 @@ Release date: TBA
(Ie. not necessarily at the end)
-What's New in Pylint 2.13.4?
+What's New in Pylint 2.13.5?
============================
Release date: TBA
+
+
+What's New in Pylint 2.13.4?
+============================
+Release date: 2022-03-31
+
* Fix false positive regression in 2.13.0 for ``used-before-assignment`` for
homonyms between variable assignments in try/except blocks and variables in
a comprehension's filter.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 9a64bda93..68580e7ce 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -4,7 +4,7 @@
from typing import Tuple
-__version__ = "2.13.3"
+__version__ = "2.13.4"
def get_numversion_from_version(v: str) -> Tuple:
diff --git a/tbump.toml b/tbump.toml
index 8b01256b6..1ea4e627d 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.13.3"
+current = "2.13.4"
regex = '''
^(?P<major>0|[1-9]\d*)
\.