Pārlūkot izejas kodu

Bumps version to 3.1.4 and updates Changelog

Ask Solem 11 gadi atpakaļ
vecāks
revīzija
bf0ee5536e
4 mainītis faili ar 12 papildinājumiem un 10 dzēšanām
  1. 4 3
      Changelog
  2. 6 5
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 4 - 3
Changelog

@@ -12,17 +12,18 @@ new in Celery 3.1.
 
 3.1.4
 =====
+:release-date: 2013-11-15 11:40 P.M UTC
 
 - Now depends on :mod:`kombu` 3.0.5
 
 - Now depends on :mod:`billiard` 3.3.0.7
 
-- Worker would accidentally set a default socket timeout of 5 seconds.
+- Worker accidentally set a default socket timeout of 5 seconds.
 
 - Django: Fixup now sets the default app so that threads will use
   the same app instance (e.g. for manage.py runserver).
 
-- Worker: Fixed Unicode error crash at startup.
+- Worker: Fixed Unicode error crash at startup experienced by some users.
 
 - Calling ``.apply_async`` on an empty chain now works again (Issue #1650).
 
@@ -36,7 +37,7 @@ new in Celery 3.1.
 
     Fix contributed by Vsevolod.
 
-- Tests now passing on PyPy 1.1 and 1.2.
+- Tests now passing on PyPy 2.1 and 2.2.
 
 .. _version-3.1.3:
 

+ 6 - 5
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
-:Version: 3.1.3 (Cipater)
+:Version: 3.1.4 (Cipater)
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/
@@ -205,10 +205,6 @@ is hosted at Read The Docs.
 
 .. _`latest documentation`: http://docs.celeryproject.org/en/latest/
 
-.. image:: https://d2weczhvl823v0.cloudfront.net/ask/celery/trend.png
-    :alt: Bitdeli badge
-    :target: https://bitdeli.com/free
-
 .. _celery-installation:
 
 Installation
@@ -422,3 +418,8 @@ file in the top distribution directory for the full license text.
 
 .. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround
 
+
+.. image:: https://d2weczhvl823v0.cloudfront.net/celery/celery/trend.png
+    :alt: Bitdeli badge
+    :target: https://bitdeli.com/free
+

+ 1 - 1
celery/__init__.py

@@ -8,7 +8,7 @@
 from __future__ import absolute_import
 
 SERIES = 'Cipater'
-VERSION = (3, 1, 3)
+VERSION = (3, 1, 4)
 __version__ = '.'.join(str(p) for p in VERSION[0:3]) + ''.join(VERSION[3:])
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

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