Skip to content

Commit

Permalink
Releasing 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed Jul 12, 2015
1 parent 5fd11fa commit fb25211
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,5 +1,11 @@
# Changelog

### Version 1.2.2
- Added shortcuts for common properties in the Message class, e.g. message.app_id.
- Added lazy initialize parameters for Connections.
- Fixed minor bug in caching mechanism.
- Changed default socket timeout to 30.

### Version 1.2.1
- Changed default SSL version to TLSv1_2.
- Added simple caching mechanism to Message auto decode functionality.
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
@@ -1,5 +1,5 @@
"""AMQP-Storm."""
__version__ = '1.2.1'
__version__ = '1.2.2'
__author__ = 'eandersson'

import logging
Expand Down
1 change: 0 additions & 1 deletion amqpstorm/compatibility.py
Expand Up @@ -7,7 +7,6 @@
PYPY = '__pypy__' in sys.builtin_module_names
PYTHON3 = sys.version_info >= (3, 0, 0)


if PYTHON3:
RANGE = range
else:
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/uri_connection.py
Expand Up @@ -16,6 +16,7 @@

from amqpstorm.connection import Connection


LOGGER = logging.getLogger(__name__)

if sys.version_info < (2, 7):
Expand Down Expand Up @@ -87,7 +88,6 @@ def _parse_ssl_options(self, ssl_kwargs):
"""Parse SSL Options.
:param ssl_kwargs:
:param ssl_options:
:return:
"""
ssl_options = {}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
"""

setup(name='AMQP-Storm',
version='1.2.1',
version='1.2.2',
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 fb25211

Please sign in to comment.