summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2011-06-29 12:04:46 +0100
committerAsk Solem <ask@celeryproject.org>2011-06-29 12:04:46 +0100
commit9f00ccdcc801c8b81ee1390552e975d6cc56ab83 (patch)
tree67c83affe1506d8579b1e74e5e52973fbc435256
parentdbae048da59db09e13fcee93642c45741d8bda83 (diff)
downloadkombu-9f00ccdcc801c8b81ee1390552e975d6cc56ab83.tar.gz
Bumps version to 1.2.0 and updates Changelog
-rw-r--r--Changelog16
-rw-r--r--README.rst2
-rw-r--r--kombu/__init__.py2
-rw-r--r--kombu/transport/SQS.py2
4 files changed, 18 insertions, 4 deletions
diff --git a/Changelog b/Changelog
index 9df209a2..b37b5758 100644
--- a/Changelog
+++ b/Changelog
@@ -2,6 +2,22 @@
Change history
================
+.. _version-1.2.0:
+
+1.2.0
+=====
+:release-date: 2011-06-29 04:00 P.M BST
+
+* Adds Queue.no_ack option to control the no_ack option for individual queues.
+
+* Recent versions broke pylibrabbitmq support.
+
+* SimpleQueue and SimpleBuffer can now be used as contexts.
+
+* Test requirements specifies PyYAML==3.09 as 3.10 dropped Python 2.4 support
+
+* Now properly reports default values in Connection.info/.as_uri
+
.. _version-1.1.6:
1.1.6
diff --git a/README.rst b/README.rst
index d7668947..80adccc4 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
kombu - AMQP Messaging Framework for Python
#############################################
-:Version: 1.1.6
+:Version: 1.2.0
Synopsis
========
diff --git a/kombu/__init__.py b/kombu/__init__.py
index 9299aa2d..6be48117 100644
--- a/kombu/__init__.py
+++ b/kombu/__init__.py
@@ -1,5 +1,5 @@
"""AMQP Messaging Framework for Python"""
-VERSION = (1, 1, 6)
+VERSION = (1, 2, 0)
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "ask@celeryproject.org"
diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py
index 89495b0a..588315ad 100644
--- a/kombu/transport/SQS.py
+++ b/kombu/transport/SQS.py
@@ -84,7 +84,6 @@ class Table(Domain):
def exchange_delete(self, exchange):
"""Delete all routes for `exchange`."""
- self._already_bound.discard(queue)
for item in self.routes_for(exchange):
self.delete_item(item["id"])
@@ -165,7 +164,6 @@ class Channel(virtual.Channel):
if self.supports_fanout:
self.table.queue_bind(*args)
-
def get_table(self, exchange):
"""Get routing table.