Skip to content

Commit

Permalink
Bump pylint to 2.14.4, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 29, 2022
1 parent 15470d1 commit bf29a55
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTORS.txt
Expand Up @@ -401,6 +401,7 @@ contributors:
- Matthijs Blom <19817960+MatthijsBlom@users.noreply.github.com>
- Matej Marušák <marusak.matej@gmail.com>
- Markus Siebenhaar <41283549+siehar@users.noreply.github.com>
- Marco Pernigotti <7657251+mpernigo@users.noreply.github.com>
- Marco Edward Gorelli <marcogorelli@protonmail.com>: Documented Jupyter integration
- Marcin Kurczewski <rr-@sakuya.pl> (rr-)
- Maik Röder <maikroeder@gmail.com>
Expand Down Expand Up @@ -489,6 +490,7 @@ contributors:
- Caio Carrara <ccarrara@redhat.com>
- C.A.M. Gerlach <WIDEnetServices@gmail.com>
- Bruno P. Kinoshita <kinow@users.noreply.github.com>
- Bruce Dawson <randomascii@users.noreply.github.com>
- Brian C. Lane <bcl@redhat.com>
- Brandon W Maister <quodlibetor@gmail.com>
- BioGeek <jeroen.vangoey@gmail.com>
Expand Down
3 changes: 2 additions & 1 deletion doc/user_guide/checkers/features.rst
Expand Up @@ -41,7 +41,8 @@ General options
specified are enabled, while categories only check already-enabled messages.
:jobs:
Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
number of processors available to use.
number of processors available to use, and will cap the count on Windows to
avoid hangs.

Default: ``1``
:unsafe-load-any-extension:
Expand Down
2 changes: 1 addition & 1 deletion doc/user_guide/configuration/all-options.rst
Expand Up @@ -165,7 +165,7 @@ Default:
""""""

Description:
*Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the number of processors available to use.*
*Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the number of processors available to use, and will cap the count on Windows to avoid hangs.*

Default:
``1``
Expand Down
8 changes: 7 additions & 1 deletion doc/whatsnew/2/2.14/full.rst
@@ -1,10 +1,16 @@
Full changelog
==============

What's New in Pylint 2.14.4?
What's New in Pylint 2.14.5?
----------------------------
Release date: TBA



What's New in Pylint 2.14.4?
----------------------------
Release date: 2022-06-29

* The ``differing-param-doc`` check was triggered by positional only arguments.

Closes #6950
Expand Down
3 changes: 2 additions & 1 deletion examples/pylintrc
Expand Up @@ -64,7 +64,8 @@ ignored-modules=
#init-hook=

# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
# number of processors available to use, and will cap the count on Windows to
# avoid hangs.
jobs=1

# Control the amount of potential inferred values when inferring a single
Expand Down
3 changes: 2 additions & 1 deletion examples/pyproject.toml
Expand Up @@ -53,7 +53,8 @@ ignore-patterns = ["^\\.#"]
# init-hook =

# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
# number of processors available to use, and will cap the count on Windows to
# avoid hangs.
jobs = 1

# Control the amount of potential inferred values when inferring a single object.
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.14.3"
__version__ = "2.14.4"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.14.3"
current = "2.14.4"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit bf29a55

Please sign in to comment.