Skip to content

Commit be55c96

Browse files
committed
Release version 35.0.0
1 parent 5296d10 commit be55c96

4 files changed

Lines changed: 53 additions & 5 deletions

File tree

CHANGES.rst

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

4+
35.0.0 (2015-11-26)
5+
-------------------
6+
7+
- Remove gitchangelog.rc. [Jose Diaz-Gonzalez]
8+
9+
- Merging changes. [Jamie Cressey]
10+
11+
- Added configuration option ignore_old_files. [Ryan Steele]
12+
13+
Files older then n days are ignored
14+
15+
16+
- Support writes into multiple redis namespaces. [Andrei Vaduva]
17+
18+
- Adding support for multiple SQS queues. [Jamie Cressey]
19+
20+
- Ensure log lines confirm to utf-8 standard. [Jamie Cressey]
21+
22+
We've come across cases when certain characters break Beaver transmitting log lines. This PR ensures all log lines correctly conform to UTF-8 when they're formatted for transmission.
23+
24+
- Set timeout to 1 second. [Tim Stoop]
25+
26+
Apparantly, it needs to be an integer, so we cannot use pika's default
27+
of .25.
28+
29+
30+
- Revert "Lower the default to .25, which is pika's default." [Tim
31+
Stoop]
32+
33+
This reverts commit 17157990a272e458cc9253666f01c6002b84bda8.
34+
35+
36+
- Lower the default to .25, which is pika's default. [Tim Stoop]
37+
38+
As suggested by @kitchen.
39+
40+
41+
- Pieter's patch for rabbitmq timeout. [Tim Stoop]
42+
43+
- Typo in config variable default value. [Jamie Cressey]
44+
45+
- Fix regressed change. [Jamie Cressey]
46+
47+
- Ability to send multiple log entries per single SQS message. [Jamie
48+
Cressey]
49+
50+
- Adding AWS profile authentication to SQS transport. [Jamie Cressey]
51+
452
34.1.0 (2015-08-10)
553
-------------------
654

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.1.0#egg=beaver
23+
pip install git+git://github.com/josegonzalez/python-beaver.git@35.0.0#egg=beaver
2424

2525
From PyPI::
2626

27-
pip install beaver==34.1.0
27+
pip install beaver==35.0.0
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.1.0'
2+
__version__ = '35.0.0'

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.1.0'
56+
version = '35.0.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '34.1.0'
58+
release = '35.0.0'
5959

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

0 commit comments

Comments
 (0)