Skip to content
Snippets Groups Projects
Commit 85b595ab authored by Gavin M. Roy's avatar Gavin M. Roy
Browse files

Increment the version, update history

parent 4392aaae
No related branches found
No related tags found
No related merge requests found
Version History
---------------
- 0.21.1 - released *2014-10-23*
- Clean up KQueue issues found when troubleshooting #44, checking for socket EOF in flags to detect connection reset
- Remove sockets from KQueue when in error state
- Change behavior when there is a poll exception list
- Handle socket connect errors more cleanly (#44)
- Handle bug for how we pull the error string from an exception in IO.on_error (#44)
- Re-raise exceptions causing the exit of Connection or Channel so they can be cleanly caught (#44)
- 0.21.0 - released *2014-10-21*
- Address a possible edge case where message frames can be interspersed when publishing in a multi-threaded environment
- Add exception handling around select.error (#43)
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
rabbitpy, a pythonic RabbitMQ client
 
"""
__version__ = '0.21.0'
__version__ = '0.21.1'
version = __version__
import logging
 
Loading
Loading
Loading
Loading
@@ -9,7 +9,7 @@ desc = ('A pure python, thread-safe, minimalistic and pythonic RabbitMQ '
'client library')
 
setuptools.setup(name='rabbitpy',
version='0.21.0',
version='0.21.1',
description=desc,
long_description=open('README.rst').read(),
author='Gavin M. Roy',
Loading
Loading
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