summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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'