Skip to content

Commit

Permalink
Bumped version to 0.4.5 and updated Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Ask Solem committed Sep 29, 2010
1 parent 4e354d5 commit 8cc59fd
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 4 deletions.
57 changes: 55 additions & 2 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,64 @@ t================
Change history
================

0.4.5
=====

* CouchDB backend added.

* Redis: Automatically cast port argument to int.

* Beanstalk: Now properly implements ``queue.purge``.

* Django dependency removed.

:class:`collections.OrderedDict` is used instead of
`django.utils.datastructures.SortedDict` when running on Python 2.7.
If running on an older Python version, the :mod:`odict` package is added
as a dependency.

* Now depends on the :mod:`uuid` module.

The :mod:`uuid` module was added to Python 2.5. If running on older
versions the compat package is added as a dependency.

0.4.4
=====

* Redis: Fied ``too many values to unpack`` errors.

See http://github.com/ask/ghettoq/issues/#issue/6

0.4.3
=====

* Now sets the destination queue when restoring unacked messages.

See http://github.com/ask/ghettoq/issues/#issue/7

* Regression broke restoring of unacked messages.

* ``connection.drain_events`` now supports the ``timeout`` argument.

0.4.2
=====

* Beanstalk backend added.

* Remove _consumers + _callbacks from thread local storage

See http://github.com/ask/ghettoq/issues/#issue/5

* Redis: purge now returns number of messages deleted.

* Beanstalk: Added support for queue priorities and increased default receive
timeout to 1.

0.4.1
=====
:release-date: 2010-07-19 11:30 A.M CEST

* Now works with celery again ;)
* Fixed ``invalid number of arguments for brpop command`` bug.

0.4.0
=====
Expand All @@ -21,7 +74,7 @@ t================
redis client is required to use the Redis backend.

* Redis: The specified database name must now be an integer.

The following values are considered OK and are accepted:

===================================== =====================================
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ghettoq - Ghetto Queue using Redis or Django Models.
============================================================================

:version: 0.4.4
:version: 0.4.5

Introduction
============
Expand Down
2 changes: 1 addition & 1 deletion ghettoq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Ghetto Queue using Redis or Django Models."""
VERSION = (0, 4, 4)
VERSION = (0, 4, 5)
__version__ = ".".join(map(str, VERSION))
__author__ = "Ask Solem"
__contact__ = "[email protected]"
Expand Down

0 comments on commit 8cc59fd

Please sign in to comment.