Browse Source

Bumped version to 1.0.3 and set release date in Changelog

Ask Solem 15 years ago
parent
commit
4891fc6770
4 changed files with 26 additions and 24 deletions
  1. 23 21
      Changelog
  2. 1 1
      README.rst
  3. 1 1
      celery/__init__.py
  4. 1 1
      docs/includes/introduction.txt

+ 23 - 21
Changelog

@@ -2,8 +2,8 @@
  Change history
 ================
 
-1.0.3 [2010-05-13 xx:Xx x.x CET]
-================================
+1.0.3 [2010-05-15 03:00 P.M CEST]
+=================================
 
 Important notes
 ---------------
@@ -119,24 +119,6 @@ News
 
     Contributions welcome!
 
-Fixes
------
-
-* Mediator thread no longer blocks for more than 1 second.
-
-    With rate limits enabled and when there was a lot of remaining time,
-    the mediator thread could block shutdown (and potentially block other
-    jobs from coming in).
-
-* Remote rate limits was not properly applied
-  (http://github.com/ask/celery/issues/issue/98)
-
-* Now handles exceptions with unicode messages correctly in
-  ``TaskWrapper.on_failure``.
-
-* Database backend: ``TaskMeta.result``: default value should be ``None``
-  not empty string.
-
 Remote control commands
 -----------------------
 
@@ -182,7 +164,7 @@ Remote control commands
 
     Remote control commands are functions registered in the command
     registry. Registering a command is done using
-    ``celery.worker.control.Panel.register``:
+    :meth:`celery.worker.control.Panel.register`:
 
     .. code-block:: python
 
@@ -218,6 +200,8 @@ Remote control commands
 * New remote control command: ``dump_schedule``
 
     Dumps the workers currently registered ETA schedule.
+    These are tasks with an ``eta`` (or ``countdown``) argument
+    waiting to be executed by the worker.
 
         >>> from celery.task.control import broadcast
         >>> broadcast("dump_schedule", reply=True)
@@ -242,6 +226,24 @@ Remote control commands
                                    start:3276.0 stop:4365>,)",
                      kwargs:"{\'page\': 3}"}>']}]
 
+Fixes
+-----
+
+* Mediator thread no longer blocks for more than 1 second.
+
+    With rate limits enabled and when there was a lot of remaining time,
+    the mediator thread could block shutdown (and potentially block other
+    jobs from coming in).
+
+* Remote rate limits was not properly applied
+  (http://github.com/ask/celery/issues/issue/98)
+
+* Now handles exceptions with unicode messages correctly in
+  ``TaskWrapper.on_failure``.
+
+* Database backend: ``TaskMeta.result``: default value should be ``None``
+  not empty string.
+
 1.0.2 [2010-03-31 12:50 P.M CET]
 ================================
 

+ 1 - 1
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 1.0.3-pre2
+:Version: 1.0.3
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/

+ 1 - 1
celery/__init__.py

@@ -1,6 +1,6 @@
 """Distributed Task Queue"""
 
-VERSION = (1, 0, 3, "-pre2")
+VERSION = (1, 0, 3)
 
 __version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
 __author__ = "Ask Solem"

+ 1 - 1
docs/includes/introduction.txt

@@ -1,6 +1,6 @@
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
-:Version: 1.0.3-pre2
+:Version: 1.0.3
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/ask/celery/