File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,14 @@ License
92
92
ChangeLog
93
93
---------
94
94
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
+
95
103
2.4.0 (Apr 04 2022)
96
104
+++++++++++++++++++
97
105
Original file line number Diff line number Diff line change 3
3
# This software may be modified and distributed under the terms
4
4
# of the MIT license. See the LICENSE file for details.
5
5
6
- __version__ = '2.4 .0'
6
+ __version__ = '2.5 .0'
7
7
8
8
# When using an in-memory only cache, this persists the cache through
9
9
# thread failures, shutdowns, and restarts.
Original file line number Diff line number Diff line change 9
9
import sys
10
10
11
11
NAME = 'python-logstash-async'
12
- VERSION = '2.4 .0'
12
+ VERSION = '2.5 .0'
13
13
14
14
here = path .abspath (path .dirname (__file__ ))
15
15
with open (path .join (here , 'README.rst' ), 'rb' ) as f :
36
36
author_email = 'enrico.troeger@uvena.de' ,
37
37
url = 'https://github.com/eht16/python-logstash-async' ,
38
38
project_urls = {
39
- 'Travis CI' : 'https://travis-ci.org/eht16/python-logstash-async/' ,
40
39
'Source code' : 'https://github.com/eht16/python-logstash-async/' ,
41
40
'Documentation' : 'https://python-logstash-async.readthedocs.io/en/stable/' ,
42
41
},
You can’t perform that action at this time.
0 commit comments