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

Prep for 0.19.0 release

parent ad6c495e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -12,11 +12,8 @@ until CTRL-C is pressed::
# Exit on CTRL-C
try:
# Consume the message
for message in queue.consume_messages():
print 'Message:'
print ' ID: %s' % message.properties['message_id']
print ' Time: %s' % message.properties['timestamp']
print ' Body: %s' % message.body
for message in queue:
message.pprint(true)
message.ack()
 
except KeyboardInterrupt:
Loading
Loading
Version History
---------------
- 0.19.0 - released *2014-06-30*
- Fix the socket read/write buffer size (#35)
- Add new flag in channels to use blocking queue.get operations increasing throughput and lowering overhead.
- 0.18.1 - released *2014-05-15*
- Fix unicode message body encoding in Python 2
- 0.18.0 - released *2014-05-15*
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
rabbitpy, a pythonic RabbitMQ client
 
"""
__version__ = '0.18.1'
__version__ = '0.19.0'
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.18.1',
version='0.19.0',
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