Skip to content
Snippets Groups Projects
Commit d782b1c7 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

v1.0.3 - bugfix release

parent 6fc356de
No related branches found
Tags v1.0.3
No related merge requests found
# v1.0.3:
* _TBA_
* declare *connection.blocked* in *capabilities*
# v1.0.2:
* **bugfix release** due to some bad flags in setup.py it was impossible
to install CoolAMQP on Python 3
# v1.0.1:
* added support for channel flow control and blocking and
......
# coding=UTF-8
__version__ = '1.0.3_a1'
__version__ = '1.0.3'
......@@ -17,10 +17,12 @@ from coolamqp import __version__
PUBLISHER_CONFIRMS = b'publisher_confirms'
CONSUMER_CANCEL_NOTIFY = b'consumer_cancel_notify'
CONNECTION_BLOCKED = b'connection.blocked'
SUPPORTED_EXTENSIONS = [
PUBLISHER_CONFIRMS,
CONSUMER_CANCEL_NOTIFY
CONSUMER_CANCEL_NOTIFY,
CONNECTION_BLOCKED
# half assed support - we just .cancel the consumer, see #12
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment