Skip to content

Commit

Permalink
Releasing 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed Sep 19, 2015
1 parent ecef547 commit 850a7ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,5 +1,9 @@
# Changelog

### Version 1.2.5
- Fixed Connection.Open bug triggered by the RabbitMQ Server not listening to the IPv6 local address.
- Fixed Minor Connection.Open bug caused by Python not being compiled with SSL support.

### Version 1.2.4
- Fixed compatibility issues with Python 2.6 and UriConnection.

Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
@@ -1,5 +1,5 @@
"""AMQP-Storm."""
__version__ = '1.2.4'
__version__ = '1.2.5'
__author__ = 'eandersson'

import logging
Expand Down
4 changes: 1 addition & 3 deletions amqpstorm/io.py
Expand Up @@ -157,8 +157,6 @@ def _get_socket_addresses(self):
def _find_address_and_connect(self, addresses):
"""Find and connect to the appropriate address.
:param addresses:
:raises AMQPConnectionError: If no appropriate address can be found,
raise an exception.
Expand Down Expand Up @@ -196,7 +194,7 @@ def _ssl_wrap_socket(self, sock):
"""Wrap SSLSocket around the socket.
:param socket sock:
:return:
:rtype: SSLSocket
"""
if 'ssl_version' not in self.parameters['ssl_options']:
self.parameters['ssl_options']['ssl_version'] = DEFAULT_SSL_VERSION
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
"""

setup(name='AMQP-Storm',
version='1.2.4',
version='1.2.5',
description='Thread-safe Python AMQP Client Library based on pamqp.',
long_description=long_description,
author='Erik Olof Gunnar Andersson',
Expand Down

0 comments on commit 850a7ca

Please sign in to comment.