Skip to content

Commit 2e3b2b0

Browse files
committed
Release version 34.0.1
1 parent d295992 commit 2e3b2b0

4 files changed

Lines changed: 39 additions & 5 deletions

File tree

CHANGES.rst

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Changelog
22
=========
33

4+
34.0.1 (2015-08-07)
5+
-------------------
6+
7+
- Revert some breakages caused by
8+
d159ec579c01b8fab532b3814c64b0ff8b2063ff. [Jose Diaz-Gonzalez]
9+
10+
Closes #331
11+
12+
- Set default for command. [Jose Diaz-Gonzalez]
13+
14+
- #323 - fix tests to run with pika SelectConnection. [Tom Kregenbild]
15+
16+
- #323 - fix RabbitMQ transport _on_open_connection_error function to
17+
print connection errors. [Tom Kregenbild]
18+
19+
- #323 1. Add clear debug prints with queue size (one print every 1000
20+
items in order not to hurt performance) 2. If main queue is empty keep
21+
running and do nothing 3. In case of a timeout from main queue restart
22+
queue. [Tom Kregenbild]
23+
24+
- #323 - Change RabbitMQ pika to use Asynchronous SelectConnection
25+
instead of BlockingConnection for better performance. [Tom Kregenbild]
26+
27+
- #323 - add the ability to increase the number of Queue consumers by
28+
creating additional processes while running with --experimental flag.
29+
[Tom Kregenbild]
30+
31+
- #323 - add the ability to increase the number of Queue consumers by
32+
creating additional processes. [Tom Kregenbild]
33+
34+
- #323 - print current queue size and number of total number transports
35+
in debug mode in order to find problem in transport rate. [Tom
36+
Kregenbild]
37+
438
34.0.0 (2015-07-24)
539
-------------------
640

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Using PIP:
2020

2121
From Github::
2222

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

2525
From PyPI::
2626

27-
pip install beaver==34.0.0
27+
pip install beaver==34.0.1
2828

2929
Documentation
3030
=============

beaver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '34.0.0'
2+
__version__ = '34.0.1'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '34.0.0'
56+
version = '34.0.1'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '34.0.0'
58+
release = '34.0.1'
5959

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

0 commit comments

Comments
 (0)