Skip to content

Commit

Permalink
Bump pylint to 3.2.5, update changelog (#9756)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 28, 2024
1 parent be7b5cc commit ae730ac
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
15 changes: 15 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,21 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.2.5?
---------------------------
Release date: 2024-06-28


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

- Fixed a false positive ``unreachable-code`` when using ``typing.Any`` as return type in python
3.8, the ``typing.NoReturn`` are not taken into account anymore for python 3.8 however.

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



What's new in Pylint 3.2.4?
---------------------------
Release date: 2024-06-26
Expand Down
4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/9751.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.4"
__version__ = "3.2.5"


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.4"
current = "3.2.5"
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.4"
version = "3.2.5"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.2/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down

0 comments on commit ae730ac

Please sign in to comment.