Skip to content

Commit 415f700

Browse files
committed
Bumps version to 3.1.10 and updates Changelog
1 parent 1064d49 commit 415f700

File tree

6 files changed

+37
-5
lines changed

6 files changed

+37
-5
lines changed

Changelog

+32
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@
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

1042
3.1.9

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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/

djcelery/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import 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__ = '[email protected]'

requirements/default.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
celery>=3.1.9
1+
celery>=3.1.10

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ all_files = 1
77
upload-dir = docs/.build/html
88

99
[bdist_rpm]
10-
requires = celery >= 3.1.1
10+
requires = celery >= 3.1.10

setup.py

+1-1
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)