summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-08-29 15:57:48 +0100
committerAsk Solem <ask@celeryproject.org>2012-08-29 15:57:48 +0100
commitecfb65f756313ca1b164bd331419ecc643fb8b14 (patch)
tree9a87dd84c57b2e886b026b78f3af3b887f6e35cd
parente195575ba20053efbd62f4199fd471711e8ae35f (diff)
downloadpy-amqp-ecfb65f756313ca1b164bd331419ecc643fb8b14.tar.gz
Bumps version to 0.9.3 and updates Changelogv0.9.3
-rw-r--r--CHANGES10
-rw-r--r--amqp/__init__.py2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 00dc4c8..fe1d96c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,16 @@ py-amqp is fork of amqplib used by Kombu containing additional features and impr
The previous amqplib changelog is here:
http://code.google.com/p/py-amqplib/source/browse/CHANGES
+.. _version-0.9.3:
+
+Version 0.9.3
+=============
+
+- Fixed bug that could cause the consumer to crash when reading
+ large message payloads asynchronously.
+
+- Serialization error messages now include the invalid value.
+
.. _version-0.9.2:
Version 0.9.2
diff --git a/amqp/__init__.py b/amqp/__init__.py
index bf97f00..f602708 100644
--- a/amqp/__init__.py
+++ b/amqp/__init__.py
@@ -16,7 +16,7 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
from __future__ import absolute_import
-VERSION = (0, 9, 2)
+VERSION = (0, 9, 3)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'