Skip to content

Commit

Permalink
2.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Feb 16, 2022
1 parent 4e33e90 commit a03b994
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

Version 2.5.1 (16 Feb 2022)
---------------------------

Bugfixes
~~~~~~~~

- Fixed picking for `augment_visit` (`#276 <https://github.com/PyCQA/pylint-django/issues/276>`_)

Version 2.5.0 (02 Jan 2022)
---------------------------

Expand Down
4 changes: 2 additions & 2 deletions pylint_django/augmentations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
author_email="[email protected]",
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=[
Expand Down

0 comments on commit a03b994

Please sign in to comment.