Skip to content

Commit 4cbc62d

Browse files
committed
Updates Changelog and bumps version to 3.1.9
1 parent 749af7b commit 4cbc62d

File tree

4 files changed

+35
-12
lines changed

4 files changed

+35
-12
lines changed

Changelog

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@
55
.. contents::
66
:local:
77

8+
.. _version-3.1.9:
9+
10+
3.1.9
11+
=====
12+
:release-date: 2014-02-13 04:00 P.M UTC
13+
14+
- TestSuiteRunner should now be working again.
15+
16+
- The `celery worker' management command now gives a proper error message
17+
when positional arguments are provided.
18+
19+
Fix contributed by Brett Gibson.
20+
21+
- celerycam: The cleanup phase now commits the transaction for every row
22+
deleted.
23+
24+
This is likely to make the cleanup considerably slower, but needs to work
25+
with Django 1.6.
26+
27+
- The `celery` management command now performs validation checks (Issue #253).
28+
29+
- Url handlers: Fixed compatibility with Django 1.2
30+
31+
Fix contributed by dongweiming.
32+
833
.. _version-3.1.1:
934

1035
3.1.1

README.rst

Lines changed: 8 additions & 10 deletions
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.1
7+
:Version: 3.1.9
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/django-celery/
1010
:Source: http://github.com/celery/django-celery/
@@ -13,19 +13,17 @@
1313

1414
--
1515

16-
**THIS LIBRARY IS NO LONGER REQUIRED**
16+
.. warning::
1717

18-
Since Celery 3.1 you can now use Celery with Django directly,
19-
so new users should not be using this library for integration.
18+
**THIS PROJECT IS NO LONGER REQUIRED**
2019

21-
Django-celery may still be used for the database result backend,
22-
and the Django periodic task admin, but these are optional features.
20+
Please follow the new tutorial at:
2321

24-
See the new Django tutorial at:
22+
http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
2523

26-
https://docs.celeryproject.org/en/latest/django/first-steps-with-django.html
27-
28-
The old README follows below.
24+
django-celery provides Celery integration for Django; Using the Django ORM
25+
and cache backend for storing results, autodiscovery of task modules
26+
for applications listed in ``INSTALLED_APPS``, and more.
2927

3028
Using django-celery
3129
===================

djcelery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import os
77

8-
VERSION = (3, 1, 1)
8+
VERSION = (3, 1, 9)
99
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
1010
__author__ = 'Ask Solem'
1111
__contact__ = '[email protected]'

docs/introduction.rst

Lines changed: 1 addition & 1 deletion
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.1
7+
:Version: 3.1.9
88
:Web: http://celeryproject.org/
99
:Download: http://pypi.python.org/pypi/django-celery/
1010
:Source: http://github.com/celery/django-celery/

0 commit comments

Comments
 (0)