From 2e3b2b0441374b71471a6c02a8f428f28277a40d Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 7 Aug 2015 16:06:27 -0400 Subject: [PATCH] Release version 34.0.1 --- CHANGES.rst | 34 ++++++++++++++++++++++++++++++++++ README.rst | 4 ++-- beaver/__init__.py | 2 +- docs/conf.py | 4 ++-- 4 files changed, 39 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7d7a9fed..7d4180f8 100644 --- a/CHANGES.rst +++ b/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) ------------------- diff --git a/README.rst b/README.rst index c017f77d..5bb547b6 100644 --- a/README.rst +++ b/README.rst @@ -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 ============= diff --git a/beaver/__init__.py b/beaver/__init__.py index a842ac65..61825184 100644 --- a/beaver/__init__.py +++ b/beaver/__init__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '34.0.0' +__version__ = '34.0.1' diff --git a/docs/conf.py b/docs/conf.py index b5060738..f553e052 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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.