summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-06-05 16:28:09 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-06-06 22:27:46 +0200
commit6447553ab509c9e811b7da53168e17fe2cadf187 (patch)
tree7467a7a4e010ebcd4a446b3a84b870768cfb50a8
parent7e44744cf4b72da53ebeddfdd1bc480bf9ec6d43 (diff)
downloadpylint-git-2.14.1.tar.gz
Bump pylint to 2.14.1, update changelogv2.14.1
-rw-r--r--.github/workflows/primer_run_pr.yaml2
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--doc/whatsnew/2/2.14/full.rst13
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--pylintrc1
-rw-r--r--tbump.toml2
6 files changed, 13 insertions, 9 deletions
diff --git a/.github/workflows/primer_run_pr.yaml b/.github/workflows/primer_run_pr.yaml
index bc0733d3c..167c1e26a 100644
--- a/.github/workflows/primer_run_pr.yaml
+++ b/.github/workflows/primer_run_pr.yaml
@@ -16,6 +16,8 @@ on:
- "!.github/workflows/primer_run_main.yaml"
- "!.github/workflows/primer_comment.yaml"
- "!tests/primer/packages_to_prime.json"
+ branches-ignore:
+ - "maintenance/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index a84d5b5da..2eff175a8 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -95,8 +95,8 @@ contributors:
- Derek Gustafson <degustaf@gmail.com>
- Cezar Elnazli <cezar.elnazli2@gmail.com>: deprecated-method
- Joseph Young <80432516+jpy-git@users.noreply.github.com> (jpy-git)
-- Nicolas Chauvat <nicolas.chauvat@logilab.fr>
- Tim Martin <tim@asymptotic.co.uk>
+- Nicolas Chauvat <nicolas.chauvat@logilab.fr>
- Radu Ciorba <radu@devrandom.ro>: not-context-manager and confusing-with-statement warnings.
- Holger Peters <email@holger-peters.de>
- Cosmin Poieană <cmin@ropython.org>: unichr-builtin and improvements to bad-open-mode.
diff --git a/doc/whatsnew/2/2.14/full.rst b/doc/whatsnew/2/2.14/full.rst
index 6b66ba49b..4a2db666a 100644
--- a/doc/whatsnew/2/2.14/full.rst
+++ b/doc/whatsnew/2/2.14/full.rst
@@ -1,10 +1,16 @@
Full changelog
==============
-What's New in Pylint 2.14.1?
+What's New in Pylint 2.14.2?
----------------------------
Release date: TBA
+
+
+What's New in Pylint 2.14.1?
+----------------------------
+Release date: 2022-06-06
+
* Avoid reporting ``unnecessary-dict-index-lookup`` or ``unnecessary-list-index-lookup``
when the index lookup is part of a destructuring assignment.
@@ -131,11 +137,6 @@ Release date: 2022-06-01
Refs #6462
-* Fixed a false positive regression in 2.13 for ``used-before-assignment`` where it is safe to rely
- on a name defined only in an ``except`` block because the ``else`` block returned.
-
- Closes #6790
-
* Removed the ``assign-to-new-keyword`` message as there are no new keywords in the supported Python
versions any longer.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 858b61b49..854367eb7 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.0"
+__version__ = "2.14.1"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/pylintrc b/pylintrc
index 5e7a6193e..8314c21be 100644
--- a/pylintrc
+++ b/pylintrc
@@ -104,6 +104,7 @@ disable=
format,
# We anticipate #3512 where it will become optional
fixme,
+ cyclic-import,
[REPORTS]
diff --git a/tbump.toml b/tbump.toml
index 2ae96a798..b9c882c37 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.14.0"
+current = "2.14.1"
regex = '''
^(?P<major>0|[1-9]\d*)
\.