Skip to content

Commit

Permalink
Version bump - 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Dec 5, 2020
1 parent 893f339 commit 4835ffe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Change log
==========

2.1 - under development
-----------------------
2.1 - 2020-12-05
----------------

* The ``retry_deferred`` and ``send_mail`` commands rely on the log level set
in your django project now. The ``-c/--cron`` option in those commands has
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="django-mailer",
version="2.0.1",
version="2.1",
description="A reusable Django app for queuing the sending of email",
long_description=open("docs/usage.rst").read() + open("CHANGES.rst").read(),
author="Pinax Team",
Expand All @@ -24,6 +24,9 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
],
install_requires=[
Expand Down
2 changes: 1 addition & 1 deletion src/mailer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import six

__version__ = '2.0.1'
__version__ = '2.1'


def get_priority(priority):
Expand Down

0 comments on commit 4835ffe

Please sign in to comment.