Skip to content

Commit

Permalink
Changelog for v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Jul 22, 2020
1 parent a8a8302 commit 7c85215
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,17 @@
Changelog
=========

Version 2.2.0 (22 Jul 2020)
---------------------------

- Rely on Django to resolve string references in ForeignKey fields. Refs
`#243 <https://github.com/PyCQA/pylint-django/issues/243>`_ (Alejandro Angulo)
- Suppress ``unused-argument`` for functions in migration modules. Fix
`#267 <https://github.com/PyCQA/pylint-django/issues/267>`_
- New checker for hard-coded ``auth.User``. Fix
`#244 <https://github.com/PyCQA/pylint-django/issues/244>`_


Version 2.1.0 (12 Jul 2020)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -70,7 +70,7 @@ Features
* Validates ``Model.__unicode__`` methods.
* ``Meta`` informational classes on forms and models do not generate errors.
* Flags dangerous use of the exclude attribute in ModelForm.Meta.
- Uses Django's internal machinery to try and resolve models referenced as
* Uses Django's internal machinery to try and resolve models referenced as
strings in ForeignKey fields. That relies on ``django.setup()`` which needs
the appropriate project settings defined!

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@
author_email='code@landscape.io',
description='A Pylint plugin to help Pylint understand the Django web framework',
long_description=LONG_DESCRIPTION,
version='2.1.0',
version='2.2.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
Expand Down

0 comments on commit 7c85215

Please sign in to comment.