Bläddra i källkod

Bumps version to 3.1.15 and updates Changelog

Ask Solem 10 år sedan
förälder
incheckning
135871f336
4 ändrade filer med 17 tillägg och 3 borttagningar
  1. 14 0
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 14 - 0
Changelog

@@ -8,6 +8,20 @@ This document contains change notes for bugfix releases in the 3.1.x series
 (Cipater), please see :ref:`whatsnew-3.1` for an overview of what's
 new in Celery 3.1.
 
+.. _version-3.1.15:
+
+3.1.15
+======
+:release-date: 2014-09-14 11:00 P.M UTC
+:release-by: Ask Solem
+
+- **Django**: Now makes sure ``django.setup()`` is called
+  before importing any task modules (Django 1.7 compatibility, Issue #2227)
+
+- **Results**: ``result.get()`` was misbehaving by calling
+ ``backend.get_task_meta`` in a finally call leading to
+ AMQP result backend queues not being properly cleaned up (Issue #2245).
+
 .. _version-3.1.14:
 
 3.1.14

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
-:Version: 3.1.14 (Cipater)
+:Version: 3.1.15 (Cipater)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/

+ 1 - 1
celery/__init__.py

@@ -14,7 +14,7 @@ version_info_t = namedtuple(
 )
 
 SERIES = 'Cipater'
-VERSION = version_info_t(3, 1, 14, '', '')
+VERSION = version_info_t(3, 1, 15, '', '')
 __version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 3.1.14 (Cipater)
+:Version: 3.1.15 (Cipater)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/