File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ Version 2.2.0 (22 Jul 2020)
5
+ ---------------------------
6
+
7
+ - Rely on Django to resolve string references in ForeignKey fields. Refs
8
+ `#243 <https://github.com/PyCQA/pylint-django/issues/243 >`_ (Alejandro Angulo)
9
+ - Suppress ``unused-argument `` for functions in migration modules. Fix
10
+ `#267 <https://github.com/PyCQA/pylint-django/issues/267 >`_
11
+ - New checker for hard-coded ``auth.User ``. Fix
12
+ `#244 <https://github.com/PyCQA/pylint-django/issues/244 >`_
13
+
14
+
4
15
Version 2.1.0 (12 Jul 2020)
5
16
---------------------------
6
17
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Features
70
70
* Validates ``Model.__unicode__ `` methods.
71
71
* ``Meta `` informational classes on forms and models do not generate errors.
72
72
* Flags dangerous use of the exclude attribute in ModelForm.Meta.
73
- - Uses Django's internal machinery to try and resolve models referenced as
73
+ * Uses Django's internal machinery to try and resolve models referenced as
74
74
strings in ForeignKey fields. That relies on ``django.setup() `` which needs
75
75
the appropriate project settings defined!
76
76
Original file line number Diff line number Diff line change 13
13
14
14
description = 'A Pylint plugin to help Pylint understand the Django web framework' ,
15
15
long_description = LONG_DESCRIPTION ,
16
- version = '2.1 .0' ,
16
+ version = '2.2 .0' ,
17
17
packages = find_packages (),
18
18
include_package_data = True ,
19
19
install_requires = [
You can’t perform that action at this time.
0 commit comments