Skip to content

Commit fc61617

Browse files
committedNov 6, 2015
Prep 1.1.3 release.
1 parent fbb9fb0 commit fc61617

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed
 

‎MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ include README.rst
22
include LICENSE
33
include MANIFEST.in
44
include requirements.txt
5-
recursive-include test_project *.py
5+
recursive-include tests *.py
66
recursive-include djcelery_email *.py

‎README.rst

+19-6
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ django-celery-email - A Celery-backed Django Email Backend
55
.. image:: https://travis-ci.org/pmclanahan/django-celery-email.svg?branch=master
66
:target: https://travis-ci.org/pmclanahan/django-celery-email
77

8-
A `Django`_ 1.3+ email backend that uses a `Celery`_ queue for out-of-band sending
8+
A `Django`_ email backend that uses a `Celery`_ queue for out-of-band sending
99
of the messages.
1010

1111
.. _`Celery`: http://celeryproject.org/
1212
.. _`Django`: http://www.djangoproject.org/
1313

1414
.. warning::
15-
16-
This version of ``django-celery-email`` is NOT compatible with versions
17-
of Celery prior to 2.2.0. If you need to use Celery 2.0.x or 2.1.x, please
18-
use `django-celery-email 0.1.1`_.
1915

20-
.. _`django-celery-email 0.1.1`: http://pypi.python.org/pypi/django-celery-email/0.1.1/
16+
This version requres the following minimum versions:
17+
18+
* Python 2.7
19+
* Django 1.7
20+
* Celery 2.4
2121

2222
Using django-celery-email
2323
=========================
@@ -84,6 +84,19 @@ of their delivery.
8484
Changelog
8585
=========
8686

87+
1.1.3 - 2015.11.06
88+
------------------
89+
90+
* support setting celery.base from string. Thanks `Matthew Jacobi`_.
91+
* use six for py2/3 string compatibility. Thanks `Matthew Jacobi`_.
92+
* pass content_subtype back in for retries. Thanks `Mark Joshua Tan`_.
93+
* rework how tests work, add tox, rework travis-ci matrix.
94+
* use six from django.utils.
95+
* release a universal wheel.
96+
97+
.. _Matthew Jacobi: https://github.com/oppianmatt
98+
.. _Mark Joshua Tan: https://github.com/mark-tan
99+
87100
1.1.2 - 2015.07.06
88101
------------------
89102

‎requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ Django>=1.7
22
celery>=2.3.0
33
django-appconf
44
flake8
5+
twine
6+
wheel

‎setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[wheel]
2+
universal = 1

‎setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,4 @@
5353
'Topic :: System :: Distributed Computing',
5454
'Topic :: Software Development :: Libraries :: Python Modules',
5555
],
56-
entry_points={},
5756
)

0 commit comments

Comments
 (0)
Please sign in to comment.