diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 40b0f06b..f5ac5af9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========= +Version 2.5.1 (16 Feb 2022) +--------------------------- + +Bugfixes +~~~~~~~~ + +- Fixed picking for `augment_visit` (`#276 `_) + Version 2.5.0 (02 Jan 2022) --------------------------- diff --git a/pylint_django/augmentations/__init__.py b/pylint_django/augmentations/__init__.py index 68157d1a..b11f242a 100644 --- a/pylint_django/augmentations/__init__.py +++ b/pylint_django/augmentations/__init__.py @@ -645,7 +645,7 @@ def is_model_test_case_subclass(node): return node_is_subclass(node, "django.test.testcases.TestCase") -class IsAttribute: +class IsAttribute: # pylint: disable=too-few-public-methods def __init__(self, parents, attrs): self.parents = parents self.attrs = attrs @@ -756,7 +756,7 @@ def allow_meta_protected_access(node): return False -class IsClass: +class IsClass: # pylint: disable=too-few-public-methods def __init__(self, class_name): self.class_name = class_name diff --git a/setup.py b/setup.py index 9f0b3f9f..15bd4cc7 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ author_email="code@landscape.io", description="A Pylint plugin to help Pylint understand the Django web framework", long_description=LONG_DESCRIPTION, - version="2.5.0", + version="2.5.1", packages=find_packages(), include_package_data=True, install_requires=[