Skip to content

Commit a03b994

Browse files
committed
2.5.1 release
1 parent 4e33e90 commit a03b994

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
Version 2.5.1 (16 Feb 2022)
5+
---------------------------
6+
7+
Bugfixes
8+
~~~~~~~~
9+
10+
- Fixed picking for `augment_visit` (`#276 <https://github.com/PyCQA/pylint-django/issues/276>`_)
11+
412
Version 2.5.0 (02 Jan 2022)
513
---------------------------
614

pylint_django/augmentations/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def is_model_test_case_subclass(node):
645645
return node_is_subclass(node, "django.test.testcases.TestCase")
646646

647647

648-
class IsAttribute:
648+
class IsAttribute: # pylint: disable=too-few-public-methods
649649
def __init__(self, parents, attrs):
650650
self.parents = parents
651651
self.attrs = attrs
@@ -756,7 +756,7 @@ def allow_meta_protected_access(node):
756756
return False
757757

758758

759-
class IsClass:
759+
class IsClass: # pylint: disable=too-few-public-methods
760760
def __init__(self, class_name):
761761
self.class_name = class_name
762762

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
author_email="[email protected]",
1515
description="A Pylint plugin to help Pylint understand the Django web framework",
1616
long_description=LONG_DESCRIPTION,
17-
version="2.5.0",
17+
version="2.5.1",
1818
packages=find_packages(),
1919
include_package_data=True,
2020
install_requires=[

0 commit comments

Comments
 (0)