Skip to content

Commit

Permalink
Releasing 2.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed Dec 1, 2019
1 parent 52fdefc commit a3bfb58
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.rst
@@ -1,9 +1,13 @@
Changelog
=========

Version 2.7.2
-------------
- Added ability to override client_properties [#77] - Thanks tkram01.

Version 2.7.1
-------------
- Fixed Connection close taking longer than intended when using SSL [#75]- Thanks troglas.
- Fixed Connection close taking longer than intended when using SSL [#75] - Thanks troglas.
- Fixed an issue with closing Channels taking too long after the server initiated it.

Version 2.7.0
Expand Down Expand Up @@ -167,4 +171,4 @@ Version 1.3.0
Usage:
except AMQPChannelError as why:
if why.error_code == 312:
self.channel.queue.declare(queue_name)
self.channel.queue.declare(queue_name)
4 changes: 4 additions & 0 deletions README.rst
Expand Up @@ -20,6 +20,10 @@ Additional documentation is available on `amqpstorm.io <https://www.amqpstorm.io
Changelog
=========

Version 2.7.2
-------------
- Added ability to override client_properties [#77] - Thanks tkram01.

Version 2.7.1
-------------
- Fixed Connection close taking longer than intended when using SSL [#75]- Thanks troglas.
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
@@ -1,5 +1,5 @@
"""AMQPStorm."""
__version__ = '2.7.1' # noqa
__version__ = '2.7.2' # noqa
__author__ = 'eandersson' # noqa

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

setup(
name='AMQPStorm',
version='2.7.1',
version='2.7.2',
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 a3bfb58

Please sign in to comment.