Skip to content
This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Commit 002b675

Browse files
committed
Release 0.4.0
1 parent a802055 commit 002b675

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,7 @@ The ``TaskManager`` class is initialised when the backend handler is initialised
475475
Changelog
476476
==============
477477

478+
* `Versions 0.4 <https://github.com/quantmind/pulsar-queue/blob/master/docs/history/0.4.md>`_
478479
* `Versions 0.3 <https://github.com/quantmind/pulsar-queue/blob/master/docs/history/0.3.md>`_
479480
* `Versions 0.2 <https://github.com/quantmind/pulsar-queue/blob/master/docs/history/0.2.md>`_
480481
* `Versions 0.1 <https://github.com/quantmind/pulsar-queue/blob/master/docs/history/0.1.md>`_

docs/history/0.4.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Ver. 0.4.0 - 2016-Aug-04
2+
3+
Several backward incompatible changes. This version is not compatible with the 0.3 series
4+
and brings several bug fixes, enhancements and almost 100% test coverage.
5+
6+
* Added ``TaskManager`` for better customise the task queue application
7+
* Added message serialisers - ``json`` and ``msgpack``
8+
* Consumers can run on a single process [b392f82](https://github.com/quantmind/pulsar-queue/commit/b392f826a2544032a7775bfcfceb4ce2d89fd3ba)
9+
* Allow to queue tasks with a delay [3ed7d7a](https://github.com/quantmind/pulsar-queue/commit/3ed7d7a4795bea0a8071201e5506ac4b6d1089ed)
10+
* Handle drop connections from pubsub and message queue broker
11+
* Enhanced documentation
12+

pq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Asynchronous task queue"""
22
from .utils.version import get_version
33

4-
VERSION = (0, 4, 0, 'alpha', 0)
4+
VERSION = (0, 4, 0, 'final', 0)
55
__version__ = get_version(VERSION, __file__)

0 commit comments

Comments
 (0)