summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2014-01-14 21:33:42 +0000
committerAsk Solem <ask@celeryproject.org>2014-01-14 21:33:59 +0000
commit07a312582d90b1303ff5d675613935392f6a6283 (patch)
tree7331f259f2ebff32f69a1e58d88f5f544289c3bb
parent7e3db2d9e0327d539537f1611a10cbc254886d48 (diff)
downloadpy-amqp-07a312582d90b1303ff5d675613935392f6a6283.tar.gz
Bumps version to 1.4.1 and updates Changelogv1.4.1
-rw-r--r--Changelog20
-rw-r--r--README.rst2
-rw-r--r--amqp/__init__.py2
3 files changed, 16 insertions, 8 deletions
diff --git a/Changelog b/Changelog
index 1c2b5b8..42dcd41 100644
--- a/Changelog
+++ b/Changelog
@@ -5,11 +5,19 @@ 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.1:
+
+1.4.1
+=====
+:release-date: 2014-01-14 09:30 P.M UTC
+
+- Fixed error occurring when heartbeats disabled.
+
.. _version-1.4.0:
1.4.0
=====
-:release-date: 2014-01-13 3:00 P.M UTC
+:release-date: 2014-01-13 03:00 P.M UTC
- Heartbeat implementation improved (Issue #6).
@@ -40,7 +48,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.3.3
=====
-:release-date: 2013-11-11 3:30 P.M UTC
+:release-date: 2013-11-11 03:30 P.M UTC
- SSLTransport: Now keeps read buffer if an exception is raised
(Issue #26).
@@ -51,7 +59,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.3.2
=====
-:release-date: 2013-10-29 2:00 P.M UTC
+:release-date: 2013-10-29 02:00 P.M UTC
- Message.channel is now a channel object (not the channel id).
@@ -172,7 +180,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.13
======
-:release-date: 2013-07-31 16:00 P.M BST
+:release-date: 2013-07-31 04:00 P.M BST
- Fixed problems with the SSL transport (Issue #15).
@@ -184,7 +192,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.12
======
-:release-date: 2013-06-25 14:00 P.M BST
+:release-date: 2013-06-25 02:00 P.M BST
- Fixed another Python 3 compatibility problem.
@@ -192,7 +200,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
1.0.11
======
-:release-date: 2013-04-11 18:00 P.M BST
+:release-date: 2013-04-11 06:00 P.M BST
- Fixed Python 3 incompatibility in ``amqp/transport.py``.
diff --git a/README.rst b/README.rst
index fcacd66..e313cc5 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
Python AMQP 0.9.1 client library
=====================================================================
-:Version: 1.4.0
+:Version: 1.4.1
: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 89904bf..3a5ba82 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, 0)
+VERSION = (1, 4, 1)
__version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
__author__ = 'Barry Pederson'
__maintainer__ = 'Ask Solem'