summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2013-11-11 15:25:22 +0000
committerAsk Solem <ask@celeryproject.org>2013-11-11 15:25:22 +0000
commitd4d1918631ac84d532d7af5fa952c68bb289ec5a (patch)
treeaec2c47dd955a454e21b22d98ba0125c74a52c4e
parent79fd8dbd153200f2a382147d160ad2bde5009eef (diff)
downloadpy-amqp-1.3.3.tar.gz
Updates Changelog and bumps version to 1.3.3v1.3.3
-rw-r--r--Changelog11
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index 77fc48d..0f84fff 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,17 @@ 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-1.3.3:
+
+1.3.3
+=====
+:release-date: 2013-11-11 3:30 P.M UTC
+
+- SSLTransport: Now keeps read buffer if an exception is raised
+ (Issue #26).
+
+ Fix contributed by Tommie Gannert.
+
.. _version-1.3.2:
1.3.2
diff --git a/README.rst b/README.rst
index db54285..e75554a 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.3.2
+:Version: 1.3.3
:Web: http://amqp.readthedocs.org/
:Download: http://pypi.python.org/pypi/amqp/
:Source: http://github.com/celery/py-amqp/
diff --git a/amqp/__init__.py b/amqp/__init__.py
index de7259b..210942b 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 = (1, 3, 2)
+VERSION = (1, 3, 3)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'