Skip to content

Commit

Permalink
Releasing 2.1.1
Browse files Browse the repository at this point in the history
- Reduced default TCP Timeout from 30s to 10s.
- Connection Open/Close timeout is now three times the value of TCP
Timeout.
- Connection will now wait for a response from the remote server before
closing.
  • Loading branch information
eandersson committed Sep 23, 2016
1 parent 2f27d06 commit 4e0ce7c
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Expand Up @@ -10,8 +10,8 @@ Version 2.1.1
Version 2.1.0
-------------
- [Experimental] Added support for the RabbitMQ Management Api.
- Documentation https://amqpstorm.readthedocs.io/en/latest/#management-api-documentation
- Examples https://github.com/eandersson/amqpstorm/tree/master/examples/management_api
- Documentation https://amqpstorm.readthedocs.io/en/latest/#management-api-documentation
- Examples https://github.com/eandersson/amqpstorm/tree/master/examples/management_api

- Connection/Channel function check_for_errors now behave more consistently.

Expand Down
29 changes: 29 additions & 0 deletions README.rst
Expand Up @@ -10,13 +10,42 @@ AMQPStorm is a library designed to be consistent, stable and thread-safe.

- 100% Unit-test Coverage!
- Supports Python 2.6, 2.7 and Python 3.3+.
- Fully tested against Python Implementations; CPython, PyPy and Pyston.
- When using a SSL connection, TLSv1 or higher is required.

Documentation
-------------

Additional documentation is available on `ReadTheDocs <https://amqpstorm.readthedocs.org>`_.

Changelog
-------------

Version 2.1.1
-------------
- Reduced default TCP Timeout from 30s to 10s.
- Connection Open/Close timeout is now three times the value of TCP Timeout.
- Connection will now wait for a response from the remote server before closing.

Version 2.1.0
-------------
- [Experimental] Added support for the RabbitMQ Management Api.
- Documentation https://amqpstorm.readthedocs.io/en/latest/#management-api-documentation
- Examples https://github.com/eandersson/amqpstorm/tree/master/examples/management_api

- Connection/Channel function check_for_errors now behave more consistently.

Version 2.0.0
-------------
- Messages are now delivered as Message objects by default.
- to_tuple and to_dict are now set to False by default.

This is a breaking change that affects the following function:

- channel.process_data_events
- channel.start_consuming
- channel.basic.get

Credits
-------------
Special thanks to gmr (Gavin M. Roy) for creating pamqp, and in addition amqpstorm is heavily influenced by his pika and rabbitpy libraries.
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
@@ -1,5 +1,5 @@
"""AMQPStorm."""
__version__ = '2.1.1a1' # noqa
__version__ = '2.1.1' # noqa
__author__ = 'eandersson' # noqa

import logging
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name='AMQPStorm',
version='2.1.1a1',
version='2.1.1',
description='Thread-safe Python RabbitMQ Client & Management library.',
long_description=open('README.rst').read(),
author='Erik Olof Gunnar Andersson',
Expand Down

0 comments on commit 4e0ce7c

Please sign in to comment.