------------------
* Add Django 4.0+ fixer to remove ``USE_L10N = True`` setting.
Thanks to Johnny Metz in `PR 173 <https://github.com/adamchainz/django-upgrade/pull/173>`__.
* Add fixer to remove outdated blocks based on comparing ``django.VERSION`` to old versions:
.. code-block:: diff
-if django.VERSION > (4, 1):
- constraint.validate()
+constraint.validate()
* Update Django 2.0+ URL fixer to rewrite ``re_path()`` calls into ``path()`` when eligible.
Thanks to Thibaut Decombe in `PR 167 <https://github.com/adamchainz/django-upgrade/pull/167>`__.