summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-04-15 22:04:30 +0100
committerAsk Solem <ask@celeryproject.org>2014-04-15 22:06:37 +0100
commitb07332d29d4b66b147011f11c755bde4d7d7c0b4 (patch)
treececf0c8b454a69600fbcdad84e98b6658e7b849e
parent391ad7b1a98549e3379fa914e61d7087fcb9e0ce (diff)
downloadpy-amqp-1.4.5.tar.gz
Bumps version to 1.4.5 and updates Changelogv1.4.5
-rw-r--r--Changelog21
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 22 insertions, 3 deletions
diff --git a/Changelog b/Changelog
index 236cfbb..e036942 100644
--- a/Changelog
+++ b/Changelog
@@ -9,9 +9,28 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.4.5
=====
-:release-date: 2014-04-15 08:00 P.M UTC
+:release-date: 2014-04-15 09:00 P.M UTC
:release-by: Ask Solem
+- Can now deserialize more AMQP types.
+
+ Now handles types ``short string``, ``short short int``,
+ ``short short unsigned int``, ``short int``, ``short unsigned int``,
+ ``long unsigned int``, ``long long int``, ``long long unsigned int``
+ and ``float`` which for some reason was missing, even in the original
+ amqplib module.
+
+- SSL: Workaround for Python SSL bug.
+
+ A bug in the python socket library causes ``ssl.read/write()``
+ on a closed socket to raise :exc:`AttributeError` instead of
+ :exc:`IOError`.
+
+ Fix contributed by Craig Jellick.
+
+- ``Transport.__del_`` now handles errors occurring at late interpreter
+ shutdown (Issue #36).
+
.. _version-1.4.4:
1.4.4
diff --git a/README.rst b/README.rst
index 727032c..661d6bd 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.4.4
+:Version: 1.4.5
: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 0488273..3bd57c9 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, 4, 4)
+VERSION = (1, 4, 5)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'