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 11Changelog
22=========
33
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+
415Version 2.1.0 (12 Jul 2020)
516---------------------------
617
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Features
7070* Validates ``Model.__unicode__ `` methods.
7171* ``Meta `` informational classes on forms and models do not generate errors.
7272* 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
7474 strings in ForeignKey fields. That relies on ``django.setup() `` which needs
7575 the appropriate project settings defined!
7676
Original file line number Diff line number Diff line change 1313 author_email = 'code@landscape.io' ,
1414 description = 'A Pylint plugin to help Pylint understand the Django web framework' ,
1515 long_description = LONG_DESCRIPTION ,
16- version = '2.1 .0' ,
16+ version = '2.2 .0' ,
1717 packages = find_packages (),
1818 include_package_data = True ,
1919 install_requires = [
You can’t perform that action at this time.
0 commit comments