From 6c3eb737efaaa16269bc357a368f091d9421dc9f Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Mon, 11 Jul 2016 18:46:40 +0200 Subject: [PATCH] Releasing 1.4.1 --- CHANGELOG | 5 ++++- amqpstorm/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index de4d4094..01a2de69 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,10 +1,13 @@ # Changelog +### Version 1.4.1 +- Heartbeats are now only sent when there is no outgoing traffic - Thanks Tom. + ### Version 1.4.0 - 100% Unit-test Coverage! - All classes are now slotted. - New improved Heartbeat Monitor. - - If no data has been sent within the Heartbeat interval, the client will now send a Heartbeat to the server. - Thanks David Schneider. + - If no data has been sent within the Heartbeat interval, the client will now send a Heartbeat to the server - Thanks David Schneider. - Reduced default RPC timeout from 120s to 60s. ### Version 1.3.4 diff --git a/amqpstorm/__init__.py b/amqpstorm/__init__.py index ab63a412..8c17293d 100644 --- a/amqpstorm/__init__.py +++ b/amqpstorm/__init__.py @@ -1,5 +1,5 @@ """AMQP-Storm.""" -__version__ = '1.4.0' # noqa +__version__ = '1.4.1' # noqa __author__ = 'eandersson' # noqa import logging diff --git a/setup.py b/setup.py index ee3f6aa6..4fcda1d9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ """ setup(name='AMQPStorm', - version='1.4.0', + version='1.4.1', description='Thread-safe Python RabbitMQ Client Library based on pamqp.', long_description=long_description, author='Erik Olof Gunnar Andersson',