Skip to content

Commit

Permalink
0.12.0b4
Browse files Browse the repository at this point in the history
  • Loading branch information
lukebakken committed Jun 7, 2018
1 parent da1b15a commit 1c4b44a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version History
===============

0.12.0b3 2018-05-18
0.12.0b4 2018-06-07
-------------------

`GitHub milestone <https://github.com/pika/pika/milestone/12>`_
Expand Down
12 changes: 11 additions & 1 deletion docs/version_history.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version History
===============

0.12.0b3 2018-05-18
0.12.0b4 2018-06-07
-------------------

`GitHub milestone <https://github.com/pika/pika/milestone/12>`_
Expand Down Expand Up @@ -38,6 +38,16 @@ Commits:

Travis CI fail fast - 3f0e739

New features:

`BlockingConnection` now supports the `add_callback_threadsafe` method which allows a function to be executed correctly on the IO loop thread. The main use-case for this is as follows:

- Application sets up a thread for `BlockingConnection` and calls `basic_consume` on it
- When a message is received, work is done on another thread
- When the work is done, the worker uses `connection.add_callback_threadsafe` to call the `basic_ack` method on the channel instance.

Please see `examples/basic_consumer_threaded.py` for an example. As always, `SelectConnection` and a fully async consumer/publisher is the preferred method of using Pika.

0.11.2 2017-11-30
-----------------

Expand Down
2 changes: 1 addition & 1 deletion pika/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.12.0b3'
__version__ = '0.12.0b4'

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setuptools.setup(
name='pika',
version='0.12.0b3',
version='0.12.0b4',
description='Pika Python AMQP Client Library',
long_description=open('README.rst').read(),
maintainer='Gavin M. Roy',
Expand Down

0 comments on commit 1c4b44a

Please sign in to comment.