Skip to content

Commit

Permalink
Bump pylint to 2.15.2, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Sep 7, 2022
1 parent 49b5d5d commit 5716ad1
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Expand Up @@ -483,6 +483,7 @@ contributors:
- Eisuke Kawashima <e-kwsm@users.noreply.github.com>
- Edward K. Ream <edreamleo@gmail.com>
- Edgemaster <grand.edgemaster@gmail.com>
- Drummond Ogilvie <me@daogilvie.com>
- Drew Risinger <drewrisinger@users.noreply.github.com>
- Dr. Nick <das-intensity@users.noreply.github.com>
- Don Jayamanne <don.jayamanne@yahoo.com>
Expand Down
18 changes: 16 additions & 2 deletions doc/whatsnew/2/2.15/index.rst
Expand Up @@ -30,10 +30,18 @@ Marc Byrne became a maintainer, welcome to the team !
.. towncrier release notes start
What's new in Pylint 2.15.1?
What's new in Pylint 2.15.2?
----------------------------
Release date: 2022-09-06
Release date: 2022-09-07

- Fixed a case where custom plugins specified by command line could silently fail.

Specifically, if a plugin relies on the ``init-hook`` option changing ``sys.path`` before
it can be imported, this will now emit a ``bad-plugin-value`` message. Before this
change, it would silently fail to register the plugin for use, but would load
any configuration, which could have unintended effects.

Fixes part of #7264. (`#7264 <https://github.com/PyCQA/pylint/issues/7264>`_)
- Fix ``used-before-assignment`` for functions/classes defined in type checking guard.

Closes #7368 (`#7368 <https://github.com/PyCQA/pylint/issues/7368>`_)
Expand Down Expand Up @@ -70,6 +78,12 @@ Release date: 2022-09-06

Closes #7380 (`#7380 <https://github.com/PyCQA/pylint/issues/7380>`_)

What's new in Pylint 2.15.1?
----------------------------
Release date: 2022-09-06

This is a "github only release", it was mistakenly released as ``2.16.0-dev`` on pypi. Replaced by ``2.15.2``.

What's new in Pylint 2.15.0?
----------------------------

Expand Down
8 changes: 0 additions & 8 deletions doc/whatsnew/fragments/7264.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.16.0-dev"
__version__ = "2.15.2"


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.16.0-dev"
current = "2.15.2"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit 5716ad1

Please sign in to comment.