Skip to content

Commit 7c85215

Browse files
committed
Changelog for v2.2.0
1 parent a8a8302 commit 7c85215

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Changelog
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+
415
Version 2.1.0 (12 Jul 2020)
516
---------------------------
617

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
author_email='[email protected]',
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=[

0 commit comments

Comments
 (0)