Skip to content

Commit 07b4343

Browse files
committed
Release version 36.3.0
1 parent 51295ad commit 07b4343

5 files changed

Lines changed: 77 additions & 6 deletions

File tree

CHANGES.rst

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,74 @@
11
Changelog
22
=========
33

4-
36.2.1 (2016-09-20)
4+
36.3.0 (2018-10-14)
55
-------------------
66

7+
Fix
8+
~~~
9+
10+
- Correct release process. [Jose Diaz-Gonzalez]
11+
12+
Other
13+
~~~~~
14+
15+
- Fix typo in RABBITMQ_ARGUMENT system property. [eroberts]
16+
17+
- Add arbitrary RabbitMQ arguments - Updated transport to parse
18+
arguments -Updated config.py to add system property - Updated user
19+
usage documentation - Confirmed no change in functionality if args are
20+
not passed. [eroberts]
21+
22+
- Usage fix. [Scott Brenner]
23+
24+
Fixed missing/incorrect TCP option.
25+
26+
- Remove truncating of logline after 32766 chars (#422) [Robert
27+
Wunderer]
28+
29+
* Remove truncating of logline after 32766 chars
30+
31+
It is not necessary to limit unicode()'s input to 32766 chars, while
32+
doing puts an arbitrary limit on the length of lines beaver can
33+
handle.
34+
35+
* Pin moto version to fix tests
36+
37+
* multiline_regex_before won't work when logfile ends with empty line
38+
39+
* Revert "multiline_regex_before won't work when logfile ends with empty line"
40+
41+
This reverts commit 5196789916afa184beb71a0ef86344d7580d9136.
42+
43+
* Fix README link
44+
45+
* Remove truncating of logline after 32766 chars
46+
47+
It is not necessary to limit unicode()'s input to 32766 chars, while
48+
doing puts an arbitrary limit on the length of lines beaver can
49+
handle.
50+
51+
52+
- Fix README link. [Jamie Cressey]
53+
54+
- Revert "multiline_regex_before won't work when logfile ends with empty
55+
line" [Jamie Cressey]
56+
57+
This reverts commit 5196789916afa184beb71a0ef86344d7580d9136.
58+
59+
60+
- Multiline_regex_before won't work when logfile ends with empty line.
61+
[jeroenmaelbrancke]
62+
63+
- Pin moto version to fix tests. [Jamie Cressey]
64+
65+
- Fixing primary key reuse issues. [Javier Villar]
66+
67+
- Limiting number of records in batch to 500 as this is the kinesis
68+
limit. [Greg Sterin]
69+
70+
- Updating docs for number_of_consumer_processes config. [Greg Sterin]
71+
772
- Avoid unreference variable 'st' error if file was removed. Raise
873
exception if unrecognized environment error from os.stat. [Greg
974
Sterin]

README.rst

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

2424
From Github::
2525

26-
pip install git+git://github.com/python-beaver/python-beaver.git@36.2.1#egg=beaver
26+
pip install git+git://github.com/python-beaver/python-beaver.git@36.3.0#egg=beaver
2727

2828
From PyPI::
2929

30-
pip install beaver==36.2.1
30+
pip install beaver==36.3.0
3131

3232
Documentation
3333
=============

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__ = '36.2.1'
2+
__version__ = '36.3.0'

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-beaver (36.3.0) stable; urgency=low
2+
3+
* Release version 36.3.0
4+
5+
-- Jose Diaz-Gonzalez <release@josediazgonzalez.com> Sun, 14 Oct 2018 23:42:32 +0000
6+
17
python-beaver (36.2.1) stable; urgency=low
28

39
* Release version 36.2.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 = '36.2.1'
56+
version = '36.3.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '36.2.1'
58+
release = '36.3.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)