summaryrefslogtreecommitdiff
path: root/kombu
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 /kombu
parentdbae048da59db09e13fcee93642c45741d8bda83 (diff)
downloadkombu-9f00ccdcc801c8b81ee1390552e975d6cc56ab83.tar.gz
Bumps version to 1.2.0 and updates Changelog
Diffstat (limited to 'kombu')
-rw-r--r--kombu/__init__.py2
-rw-r--r--kombu/transport/SQS.py2
2 files changed, 1 insertions, 3 deletions
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.