-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
15 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
##### Changelog | ||
###### Version 1.2.0 | ||
- Added additional SSL parameters to UriConnection. | ||
# Changelog | ||
|
||
### Version 1.2.0 | ||
|
||
#### Features | ||
- Allow incoming messages to be delivered as a Message class. | ||
- Introduced shortcuts to the Message class. | ||
- Message.Publish | ||
- Message.Ack / Message.Nack / Message.Reject | ||
- Added generator based consumer function called => build_inbound_messages. | ||
|
||
- Fixed PyPy specific bug. | ||
#### Improvements | ||
- TSLv1 is now set as default on SSL connections. | ||
- Added additional SSL parameters to UriConnection. | ||
- Re-factored Connection and IO handling. | ||
|
||
#### Bug Fixes | ||
- Fixed PyPy bug with handling of integers. | ||
- Python compiled without SSL support should no longer trigger an exception. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AMQP-Storm 1.2.0-RC2 | ||
AMQP-Storm 1.2.0 | ||
------------- | ||
Thread-safe Python AMQP Client Library based on pamqp. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""AMQP-Storm.""" | ||
__version__ = '1.2.0-RC2' | ||
__version__ = '1.2.0' | ||
__author__ = 'eandersson' | ||
|
||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters