From 875b10d1715def640042c7ff2f42c00a6c07eed1 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Tue, 30 Sep 2014 18:27:15 +0100 Subject: Reconstructs missing commit. Closes #50 --- Changelog | 16 ++++++++++++++++ README.rst | 2 +- amqp/__init__.py | 2 +- 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' -- cgit v1.2.1