Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pylint to 2.16.1, update changelog #8166

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions doc/whatsnew/2/2.16/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,20 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t

.. towncrier release notes start

What's new in Pylint 2.16.1?
----------------------------
Release date: 2023-02-02


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

- Fix a crash happening for python interpreter < 3.9 following a failed typing
update.

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


What's new in Pylint 2.16.0?
----------------------------
Release date: 2023-02-01
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/8161.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__ = "2.16.0"
__version__ = "2.16.1"


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

[version]
current = "2.16.0"
current = "2.16.1"
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 = "2.16.0"
version = "2.16.1"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/2/2.16/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down