File tree 4 files changed +12
-3
lines changed
src/concurrent_log_handler
4 files changed +12
-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.9
3
+ Version: 0.9.10
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,9 @@ Description:
147
147
148
148
Change Log
149
149
==========
150
+ - 0.9.10: Fix inadvertent lock sharing when forking
151
+ Thanks to @eriktews for this fix
152
+
150
153
- 0.9.9: Fix Python 2 compatibility broken in last release
151
154
152
155
- 0.9.8: Bug fixes and permission features
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ 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.10: Fix inadvertent lock sharing when forking
94
+ Thanks to @eriktews for this fix
95
+
93
96
- 0.9.9: Fix Python 2 compatibility broken in last release
94
97
95
98
- 0.9.8: Bug fixes and permission features
Original file line number Diff line number Diff line change 142
142
143
143
Change Log
144
144
==========
145
+ - 0.9.10: Fix inadvertent lock sharing when forking
146
+ Thanks to @eriktews for this fix
147
+
145
148
- 0.9.9: Fix Python 2 compatibility broken in last release
146
149
147
150
- 0.9.8: Bug fixes and permission features
272
275
273
276
from setuptools import setup
274
277
275
- VERSION = "0.9.9 "
278
+ VERSION = "0.9.10 "
276
279
classifiers = """\
277
280
Development Status :: 4 - Beta
278
281
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.9 '
95
+ __version__ = '0.9.10 '
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