Skip to content

Commit 16427b5

Browse files
committed
Version bump
1 parent e1f3544 commit 16427b5

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/about.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ License
9292
ChangeLog
9393
---------
9494

95+
2.5.0 (Apr 16 2022)
96+
+++++++++++++++++++
97+
98+
* Handle database disk errors (#72, Peter Mazarovich).
99+
* Use Python's PriorityQueue to reduce memory consumption
100+
(#73, Peter Mazarovich).
101+
102+
95103
2.4.0 (Apr 04 2022)
96104
+++++++++++++++++++
97105

logstash_async/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This software may be modified and distributed under the terms
44
# of the MIT license. See the LICENSE file for details.
55

6-
__version__ = '2.4.0'
6+
__version__ = '2.5.0'
77

88
# When using an in-memory only cache, this persists the cache through
99
# thread failures, shutdowns, and restarts.

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010

1111
NAME = 'python-logstash-async'
12-
VERSION = '2.4.0'
12+
VERSION = '2.5.0'
1313

1414
here = path.abspath(path.dirname(__file__))
1515
with open(path.join(here, 'README.rst'), 'rb') as f:
@@ -36,7 +36,6 @@
3636
author_email='enrico.troeger@uvena.de',
3737
url='https://github.com/eht16/python-logstash-async',
3838
project_urls={
39-
'Travis CI': 'https://travis-ci.org/eht16/python-logstash-async/',
4039
'Source code': 'https://github.com/eht16/python-logstash-async/',
4140
'Documentation': 'https://python-logstash-async.readthedocs.io/en/stable/',
4241
},

0 commit comments

Comments
 (0)