Skip to content

Commit

Permalink
Releasing v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eandersson committed Jun 27, 2015
1 parent a655507 commit e9c6711
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,5 +1,10 @@
# Changelog

### Version 1.2.1
- Changed default SSL version to TLSv1_2.
- Added simple caching mechanism to Message auto decode functionality.
- Fixed potential bug caused by Python being built with the OPENSSL_NO_SSLv3 flag.

### Version 1.2.0

#### Features
Expand All @@ -12,6 +17,7 @@
#### Improvements
- TSLv1 is now set as default on SSL connections.
- Added additional SSL parameters to UriConnection.
- When using the new Message class, properties are automatically utf-8 decoded when possible.
- Re-factored Connection and IO handling.

#### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.rst
@@ -1,4 +1,4 @@
AMQP-Storm 1.2.0
AMQP-Storm
-------------
Thread-safe Python AMQP Client Library based on pamqp.

Expand All @@ -14,7 +14,7 @@ AMQP-Storm is a library designed to be easy to use, stable and thread-safe.

Credits
-------------
Special thanks to gmr (Gavin M. Roy) for creating pamqp, and in addition amqp-storm is heavily influenced by pika and rabbitpy.
Special thanks to gmr (Gavin M. Roy) for creating pamqp, and in addition amqp-storm is heavily influenced by his pika and rabbitpy libraries.

.. |Version| image:: https://badge.fury.io/py/amqp-storm.svg?
:target: http://badge.fury.io/py/amqp-storm
Expand Down
2 changes: 1 addition & 1 deletion amqpstorm/__init__.py
@@ -1,5 +1,5 @@
"""AMQP-Storm."""
__version__ = '1.2.0'
__version__ = '1.2.1'
__author__ = 'eandersson'

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

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

Please sign in to comment.