Skip to content

Commit

Permalink
Bump pylint to 2.14.1, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 6, 2022
1 parent 7e44744 commit 6447553
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/primer_run_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
13 changes: 7 additions & 6 deletions doc/whatsnew/2/2.14/full.rst
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.14.0"
__version__ = "2.14.1"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
1 change: 1 addition & 0 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ disable=
format,
# We anticipate #3512 where it will become optional
fixme,
cyclic-import,


[REPORTS]
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -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*)
\.
Expand Down

0 comments on commit 6447553

Please sign in to comment.