summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-09-30 18:27:15 +0100
committerAsk Solem <ask@celeryproject.org>2014-09-30 18:27:15 +0100
commit875b10d1715def640042c7ff2f42c00a6c07eed1 (patch)
tree44cc6da66cd2d9ef513b482236ec9aaa3b45fdc8
parentbcdce0420e690d27ad43d1d025af0f13f2152e3f (diff)
downloadpy-amqp-875b10d1715def640042c7ff2f42c00a6c07eed1.tar.gz
Reconstructs missing commit. Closes #50v1.4.6
-rw-r--r--Changelog16
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 18 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index ed0026a..ee6df35 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,22 @@ 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.4.6:
+
+1.4.6
+=====
+:release-date: 2014-08-11 06:00 P.M UTC
+:release-by: Ask Solem
+
+- Now keeps buffer when socket times out.
+
+ Fix contributed by Artyom Koval.
+
+- Adds ``Connection.Transport`` attribute that can be used to specify
+ a different transport implementation.
+
+ Contributed by Yury Selivanov.
+
.. _version-1.4.5:
1.4.5
diff --git a/README.rst b/README.rst
index 661d6bd..76a6219 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.4.5
+:Version: 1.4.6
: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 3bd57c9..4ba9826 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, 5)
+VERSION = (1, 4, 6)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'