Skip to content

Commit

Permalink
Version bump 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Sep 22, 2023
1 parent 51d73f1 commit 8240933
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Change log
==========

2.2.1 - unreleased
2.2.1 - 2023-09-22
------------------

* Add admin action to send messages
* Add fix for email address that is a NoneType
* Stop testing on unsupported Python (<3.7) and Django (<2.2) versions
* Start testing on Python 3.11 and Django 4.1/4.2
* Add setting to limit the amount of retries for deferred messages
* Added admin action to send messages
* Added fix for email address that is a ``NoneType``
* Stopped testing on unsupported Python (<3.7) and Django (<2.2) versions
* Started testing on Python 3.11 and Django 4.1/4.2
* Added setting to limit the amount of retries for deferred messages
(``MAILER_EMAIL_MAX_RETRIES``), defaults to ``None`` (unlimited)
(See Issue `#161 <https://github.com/pinax/django-mailer/issues/161>`_)

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ Use the `-r failure` option to remove only failed log entries instead, or `-r al
Note that the ``send_mail`` cronjob can only run at a maximum frequency of once each minute. If a maximum
delay of 60 seconds between creating an email and sending it is too much, an alternative is available.

Using ``./manage.py runmailer`` a long running process is started that will check the database
for new emails each ``MAILER_EMPTY_QUEUE_SLEEP`` (default: 30 seconds).
Use ``./manage.py runmailer`` to launch a long running process that will check the database
for new emails every ``MAILER_EMPTY_QUEUE_SLEEP`` seconds (default: 30 seconds).

Documentation and support
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/mailer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import warnings

__version__ = '2.2'
__version__ = '2.2.1'


def get_priority(priority):
Expand Down

0 comments on commit 8240933

Please sign in to comment.