Bumps version to 1.1.6 and updates Changelog

This commit is contained in:
Ask Solem 2011-06-13 15:47:29 +01:00
parent fab106aeea
commit c24eae1c25
3 changed files with 19 additions and 2 deletions

View File

@ -2,12 +2,29 @@
Change history
================
.. _version-1.1.6:
1.1.6
=====
:release-date: 2011-06-13 04:00 P.M BST
* Redis: Fixes issue introduced in 1.1.4, where a redis connection
failure could leave consumer hanging forever.
.. _version-1.1.5:
1.1.5
=====
:release-date: 2011-06-07 06:00 P.M BST
* Fixes compatibility with redis-py 2.4.4.
.. _version-1.1.4:
1.1.4
=====
:release-date: 2011-06-07 04:00 P.M BST
* Redis transport: Now requires redis-py version 2.4.4 or later.
* New Amazon SQS transport added.

View File

@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
:Version: 1.1.5
:Version: 1.1.6
Synopsis
========

View File

@ -1,5 +1,5 @@
"""AMQP Messaging Framework for Python"""
VERSION = (1, 1, 5)
VERSION = (1, 1, 6)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org"