summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2011-04-05 15:52:35 +0200
committerAsk Solem <ask@celeryproject.org>2011-04-05 15:52:35 +0200
commitea6fed6efe07dfaf15fe8b68edeaa3ef5d296efc (patch)
treec8f9a3b7d71ce95ba2fe73bf4506948ac3a34c16
parent483928fd9bd166f74b4bad7620ae0fde5809787b (diff)
downloadkombu-ea6fed6efe07dfaf15fe8b68edeaa3ef5d296efc.tar.gz
Bumps version and updates Changelog
-rw-r--r--Changelog9
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
3 files changed, 11 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 5d94063a..29079023 100644
--- a/Changelog
+++ b/Changelog
@@ -2,6 +2,15 @@
Change history
================
+.. _version-1.1.1:
+
+1.1.1
+=====
+:release-date: 2011-04-05 15:51 P.M CEST
+
+* 1.1.0 broke Python 2.4 and 2.5 compatibility by using
+ LifoQueue.
+
.. _version-1.1.0:
1.1.0
diff --git a/README.rst b/README.rst
index 29160db5..f2382d58 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
-:Version: 1.1.0
+:Version: 1.1.1
Synopsis
========
diff --git a/kombu/__init__.py b/kombu/__init__.py
index e678a59d..1724e577 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,5 +1,5 @@
"""AMQP Messaging Framework for Python"""
-VERSION = (1, 1, 0)
+VERSION = (1, 1, 1)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org"