summaryrefslogtreecommitdiff
path: root/Changelog
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2016-05-31 18:28:04 -0700
committerAsk Solem <ask@celeryproject.org>2016-05-31 18:28:04 -0700
commitb12272c54a88ad428a7eaf837280f136b7252e08 (patch)
treec4eb3071400fda23de0f811dce3bd27d804c1f1c /Changelog
parent4a14210462d4aff0fbe4d06f4f1b65c53aae4060 (diff)
downloadpy-amqp-b12272c54a88ad428a7eaf837280f136b7252e08.tar.gz
Bumps version to 2.0.1 and updates Changelogv2.0.1
Diffstat (limited to 'Changelog')
-rw-r--r--Changelog36
1 files changed, 36 insertions, 0 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.