File tree Expand file tree Collapse file tree 6 files changed +37
-5
lines changed
Expand file tree Collapse file tree 6 files changed +37
-5
lines changed Original file line number Diff line number Diff line change 55.. contents::
66 :local:
77
8+ .. _version-3.1.10:
9+
10+ 3.1.10
11+ ======
12+ :release-date: 2014-03-31 04:00 P.M UTC
13+
14+ - Test suite Django version compatibility fixes
15+
16+ Contributed by Spencer Ellinor
17+
18+ - Admin: Model forms now defines ``fields`` and ``exclude`` attributes
19+ (Issue #311)
20+
21+ Contributed by David Fischer.
22+
23+ - Models: ``get_query_set`` renamed to ``get_queryset`` (but alias available)
24+ (Issue #308).
25+
26+ Contributed by David Fischer.
27+
28+ - Admin: Fixed bug in ``humanize.py``.
29+
30+ Contributed by koodjo.
31+
32+ - Support for Django 1.8's ``DiscoverRunner``.
33+
34+ Contributed by David Fischer.
35+
36+ - Snapshot: Fixed time stamp timezone issue.
37+
38+ Contributed by Michael van Tellingen.
39+
840.. _version-3.1.9:
941
10423.1.9
Original file line number Diff line number Diff line change 44
55.. image :: http://cloud.github.com/downloads/celery/celery/celery_128.png
66
7- :Version: 3.1.9
7+ :Version: 3.1.10
88:Web: http://celeryproject.org/
99:Download: http://pypi.python.org/pypi/django-celery/
1010:Source: http://github.com/celery/django-celery/
Original file line number Diff line number Diff line change 55
66import os
77
8- VERSION = (3 , 1 , 9 )
8+ VERSION = (3 , 1 , 10 )
99__version__ = '.' .join (map (str , VERSION [0 :3 ])) + '' .join (VERSION [3 :])
1010__author__ = 'Ask Solem'
1111__contact__ = 'ask@celeryproject.org'
Original file line number Diff line number Diff line change 1- celery>=3.1.9
1+ celery>=3.1.10
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ all_files = 1
77upload-dir = docs/.build/html
88
99[bdist_rpm]
10- requires = celery >= 3.1.1
10+ requires = celery >= 3.1.10
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ def extra_args(self):
178178 data_files = data_files ,
179179 zip_safe = False ,
180180 install_requires = [
181- 'celery>=3.1.9 ' ,
181+ 'celery>=3.1.10 ' ,
182182 ],
183183 cmdclass = {'test' : RunTests ,
184184 'quicktest' : QuickRunTests ,
You can’t perform that action at this time.
0 commit comments