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:04:30 +0100
commit76a491e84dc27c81b424fabbd3c4b0d715a11f6b (patch)
treeff8f26965b14f72253d8a399f1ace165d15f020c
parent78de7b44f95745f1c547c6a6eceb692631c788fc (diff)
downloadpy-amqp-76a491e84dc27c81b424fabbd3c4b0d715a11f6b.tar.gz
Bumps version to 1.4.5 and updates Changelog
-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 37998f1..aef8f9e 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'