File tree 4 files changed +9
-3
lines changed
src/concurrent_log_handler
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
Metadata-Version: 1.1
2
2
Name: concurrent-log-handler
3
- Version: 0.9.10
3
+ Version: 0.9.11
4
4
Summary: RotatingFileHandler replacement with concurrency, gzip and Windows support
5
5
Home-page: https://github.com/Preston-Landers/concurrent_log_handler
6
6
Author: Preston Landers
@@ -147,6 +147,8 @@ Description:
147
147
148
148
Change Log
149
149
==========
150
+ - 0.9.11: Fix issues with gzip compression option (use buffering)
151
+
150
152
- 0.9.10: Fix inadvertent lock sharing when forking
151
153
Thanks to @eriktews for this fix
152
154
Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ restart your app service so that all processes are using the same settings at th
90
90
91
91
## Change Log ##
92
92
93
+ - 0.9.11: Fix issues with gzip compression option (use buffering)
94
+
93
95
- 0.9.10: Fix inadvertent lock sharing when forking
94
96
Thanks to @eriktews for this fix
95
97
Original file line number Diff line number Diff line change 142
142
143
143
Change Log
144
144
==========
145
+ - 0.9.11: Fix issues with gzip compression option (use buffering)
146
+
145
147
- 0.9.10: Fix inadvertent lock sharing when forking
146
148
Thanks to @eriktews for this fix
147
149
275
277
276
278
from setuptools import setup
277
279
278
- VERSION = "0.9.10 "
280
+ VERSION = "0.9.11 "
279
281
classifiers = """\
280
282
Development Status :: 4 - Beta
281
283
Topic :: System :: Logging
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def randbits(nb):
92
92
except ImportError :
93
93
gzip = None
94
94
95
- __version__ = '0.9.10 '
95
+ __version__ = '0.9.11 '
96
96
__author__ = "Preston Landers <[email protected] >"
97
97
# __author__ = "Lowell Alleman"
98
98
__all__ = [
You can’t perform that action at this time.
0 commit comments