File tree 4 files changed +15
-3
lines changed
src/concurrent_log_handler
4 files changed +15
-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.11
3
+ Version: 0.9.12
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.12: Add umask option (thanks to @blakehilliard)
151
+ This adds the ability to control the permission flags when creating log files.
152
+
150
153
- 0.9.11: Fix issues with gzip compression option (use buffering)
151
154
152
155
- 0.9.10: Fix inadvertent lock sharing when forking
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.12: Add umask option (thanks to @blakehilliard )
94
+ This adds the ability to control the permission flags when creating log files.
95
+
93
96
- 0.9.11: Fix issues with gzip compression option (use buffering)
94
97
95
98
- 0.9.10: Fix inadvertent lock sharing when forking
@@ -136,3 +139,6 @@ https://github.com/wcooley
136
139
137
140
https://github.com/greenfrog82
138
141
142
+ https://github.com/blakehilliard
143
+
144
+ https://github.com/eriktews
Original file line number Diff line number Diff line change 142
142
143
143
Change Log
144
144
==========
145
+ - 0.9.12: Add umask option (thanks to @blakehilliard)
146
+ This adds the ability to control the permission flags when creating log files.
147
+
145
148
- 0.9.11: Fix issues with gzip compression option (use buffering)
146
149
147
150
- 0.9.10: Fix inadvertent lock sharing when forking
277
280
278
281
from setuptools import setup
279
282
280
- VERSION = "0.9.11 "
283
+ VERSION = "0.9.12 "
281
284
classifiers = """\
282
285
Development Status :: 4 - Beta
283
286
Topic :: System :: Logging
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def randbits(nb):
93
93
except ImportError :
94
94
gzip = None
95
95
96
- __version__ = '0.9.11 '
96
+ __version__ = '0.9.12 '
97
97
__author__ = "Preston Landers <[email protected] >"
98
98
# __author__ = "Lowell Alleman"
99
99
__all__ = [
You can’t perform that action at this time.
0 commit comments