summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog36
-rw-r--r--amqp/__init__.py2
-rw-r--r--docs/includes/introduction.txt2
3 files changed, 38 insertions, 2 deletions
diff --git a/Changelog b/Changelog
index c048e8b..ecdd1dc 100644
--- a/Changelog
+++ b/Changelog
@@ -5,6 +5,37 @@ 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-2.0.1:
+
+2.0.1
+=====
+:release-date: 2016-05-31 6:20 PM PDT
+:release-by: Ask Solem
+
+- Adds backward compatibility layer for the 1.4 API.
+
+ Using the connection without calling ``.connect()`` first will now work,
+ but a warning is emitted and the behavior is deprecated and will be
+ removed in version 2.2.
+
+- Fixes kombu 3.0/celery 3.1 compatibility (Issue #88).
+
+ Fix contributed by Bas ten Berge.
+
+- Fixed compatibility with Python 2.7.3 (Issue #85)
+
+ Fix contributed by Bas ten Berge.
+
+- Fixed bug where calling drain_events() with a timeout of 0 would actually
+ block until a frame is received.
+
+- Documentation moved to http://amqp.readthedocs.io (Issue #89).
+
+ See https://blog.readthedocs.com/securing-subdomains/ for the reasoning
+ behind this change.
+
+ Fix contributed by Adam Chainz.
+
.. _version-2.0.0:
2.0.0
@@ -14,6 +45,11 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
- No longer supports Python 2.6
+- You must now call Connection.connect() to establish the connection.
+
+ The Connection constructor no longer has side effects, so you have
+ to explicitly call connect first.
+
- Library rewritten to anticipate async changes.
- Connection now exposes underlying socket options.
diff --git a/amqp/__init__.py b/amqp/__init__.py
index bcc0b0e..b2b849b 100644
--- a/amqp/__init__.py
+++ b/amqp/__init__.py
@@ -22,7 +22,7 @@ version_info_t = namedtuple(
'version_info_t', ('major', 'minor', 'micro', 'releaselevel', 'serial'),
)
-VERSION = version_info = version_info_t(2, 0, 0, '', '')
+VERSION = version_info = version_info_t(2, 0, 1, '', '')
__version__ = '{0.major}.{0.minor}.{0.micro}{0.releaselevel}'.format(VERSION)
__author__ = 'Barry Pederson'
diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt
index 1ef8ffe..0e6d3e2 100644
--- a/docs/includes/introduction.txt
+++ b/docs/includes/introduction.txt
@@ -1,4 +1,4 @@
-:Version: 2.0.0
+:Version: 2.0.1
:Web: https://amqp.readthedocs.io/
:Download: http://pypi.python.org/pypi/amqp/
:Source: http://github.com/celery/py-amqp/