Skip to content

Commit

Permalink
Release version 34.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Aug 7, 2015
1 parent d295992 commit 2e3b2b0
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 5 deletions.
34 changes: 34 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,40 @@
Changelog
=========

34.0.1 (2015-08-07)
-------------------

- Revert some breakages caused by
d159ec579c01b8fab532b3814c64b0ff8b2063ff. [Jose Diaz-Gonzalez]

Closes #331

- Set default for command. [Jose Diaz-Gonzalez]

- #323 - fix tests to run with pika SelectConnection. [Tom Kregenbild]

- #323 - fix RabbitMQ transport _on_open_connection_error function to
print connection errors. [Tom Kregenbild]

- #323 1. Add clear debug prints with queue size (one print every 1000
items in order not to hurt performance) 2. If main queue is empty keep
running and do nothing 3. In case of a timeout from main queue restart
queue. [Tom Kregenbild]

- #323 - Change RabbitMQ pika to use Asynchronous SelectConnection
instead of BlockingConnection for better performance. [Tom Kregenbild]

- #323 - add the ability to increase the number of Queue consumers by
creating additional processes while running with --experimental flag.
[Tom Kregenbild]

- #323 - add the ability to increase the number of Queue consumers by
creating additional processes. [Tom Kregenbild]

- #323 - print current queue size and number of total number transports
in debug mode in order to find problem in transport rate. [Tom
Kregenbild]

34.0.0 (2015-07-24)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -20,11 +20,11 @@ Using PIP:

From Github::

pip install git+git://github.com/josegonzalez/python-beaver.git@34.0.0#egg=beaver
pip install git+git://github.com/josegonzalez/python-beaver.git@34.0.1#egg=beaver

From PyPI::

pip install beaver==34.0.0
pip install beaver==34.0.1

Documentation
=============
Expand Down
2 changes: 1 addition & 1 deletion beaver/__init__.py
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '34.0.0'
__version__ = '34.0.1'
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '34.0.0'
version = '34.0.1'
# The full version, including alpha/beta/rc tags.
release = '34.0.0'
release = '34.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 2e3b2b0

Please sign in to comment.