Skip to content

Commit

Permalink
Bump pylint to 3.2.7, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Aug 31, 2024
1 parent 1deaffa commit a98215b
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 15 deletions.
31 changes: 31 additions & 0 deletions doc/whatsnew/3/3.2/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,37 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.2.7?
---------------------------
Release date: 2024-08-31


False Positives Fixed
---------------------

- Fixed a false positive `unreachable` for `NoReturn` coroutine functions.

Closes #9840. (`#9840 <https://github.com/pylint-dev/pylint/issues/9840>`_)



Other Bug Fixes
---------------

- Fix crash in refactoring checker when calling a lambda bound as a method.

Closes #9865 (`#9865 <https://github.com/pylint-dev/pylint/issues/9865>`_)

- Fix a crash in ``undefined-loop-variable`` when providing the ``iterable`` argument to ``enumerate()``.

Closes #9875 (`#9875 <https://github.com/pylint-dev/pylint/issues/9875>`_)

- Fix to address indeterminacy of error message in case a module name is same as another in a separate namespace.

Refs #9883 (`#9883 <https://github.com/pylint-dev/pylint/issues/9883>`_)



What's new in Pylint 3.2.6?
---------------------------
Release date: 2024-07-21
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9840.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9865.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9875.bugfix

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9883.bugfix

This file was deleted.

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__ = "3.2.6"
__version__ = "3.2.7"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
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/pylint-dev/pylint"

[version]
current = "3.2.6"
current = "3.2.7"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "3.2.6"
version = "3.2.7"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.2/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down

0 comments on commit a98215b

Please sign in to comment.