-----
This release contains two backwards incompatible changes -
please read the notes below for details.
* django-recurrence now returns timezone aware ``datetime`` objects
in most cases 130. If ``USE_TZ`` is ``True`` (it
defaults to off with a stock Django install) then you'll now get
timezone aware ``datetime`` objects back from django-recurrence. If
you have ``USE_TZ`` as ``True``, and you don't want this behaviour,
you can set ``RECURRENCE_USE_TZ`` to ``False``, but please let us
know (via GitHub issues) that you wanted to opt out, so we can
understand what your use case is.
* ``RecurrenceField`` instances without ``required=False`` will now
require at least one rule or date. This change is intended to bring
django-recurrence into line with how custom fields should
behave. If you don't want to require at least one rule or date,
just set ``require=False`` on your field 133.
* Improvements to avoid inline styles 85;
* Handle changes to ``javascript_catalog`` in Django 2 131.