Skip to content

Commit

Permalink
Bump pylint to 3.0.1, update changelog (#9119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Oct 5, 2023
1 parent a1443ed commit f2cded4
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 11 deletions.
4 changes: 2 additions & 2 deletions doc/exts/pylint_extensions.py
Expand Up @@ -145,9 +145,9 @@ def get_plugins_info(
return by_checker


def setup(app: Sphinx) -> dict[str, str]:
def setup(app: Sphinx) -> dict[str, str | bool]:
app.connect("builder-inited", builder_inited)
return {"version": sphinx.__display_version__}
return {"version": sphinx.__display_version__, "parallel_read_safe": True}


if __name__ == "__main__":
Expand Down
22 changes: 22 additions & 0 deletions doc/whatsnew/3/3.0/index.rst
Expand Up @@ -65,6 +65,28 @@ easier to parse and provides more info, here's a sample output.
.. towncrier release notes start
What's new in Pylint 3.0.1?
---------------------------
Release date: 2023-10-05


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

- Fixed false positive for ``inherit-non-class`` for generic Protocols.

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



Other Changes
-------------

- Fix a crash when an enum class which is also decorated with a ``dataclasses.dataclass`` decorator is defined.

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


What's new in Pylint 3.0.0?
---------------------------
Release date: 2023-10-02
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9100.other

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9106.false_positive

This file was deleted.

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

from __future__ import annotations

__version__ = "3.0.0"
__version__ = "3.0.1"


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/pylint-dev/pylint"

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

0 comments on commit f2cded4

Please sign in to comment.