File tree 4 files changed +24
-3
lines changed
src/concurrent_log_handler
4 files changed +24
-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.16
3
+ Version: 0.9.17
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
@@ -195,6 +195,13 @@ Description:
195
195
196
196
Change Log
197
197
==========
198
+ - 0.9.17: Contains the following fixes:
199
+ * Catch exceptions when unlocking the lock.
200
+ * Clarify documentation, esp. with use of multiprocessing
201
+ * In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
202
+
203
+ NOTE: the next release will likely be a 1.0 release candidate.
204
+
198
205
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
199
206
Affects Python 2 mainly - see Issue #21
200
207
Original file line number Diff line number Diff line change @@ -177,6 +177,13 @@ file handlers) from writing to a log file in use.
177
177
178
178
## Change Log ##
179
179
180
+ - 0.9.17: Contains the following fixes:
181
+ * Catch exceptions when unlocking the lock.
182
+ * Clarify documentation, esp. with use of multiprocessing
183
+ * In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
184
+
185
+ NOTE: the next release will likely be a 1.0 release candidate.
186
+
180
187
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
181
188
Affects Python 2 mainly - see Issue #21
182
189
Original file line number Diff line number Diff line change 174
174
175
175
Change Log
176
176
==========
177
+ - 0.9.17: Contains the following fixes:
178
+ * Catch exceptions when unlocking the lock.
179
+ * Clarify documentation, esp. with use of multiprocessing
180
+ * In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
181
+
182
+ NOTE: the next release will likely be a 1.0 release candidate.
183
+
177
184
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
178
185
Affects Python 2 mainly - see Issue #21
179
186
329
336
330
337
from setuptools import setup
331
338
332
- VERSION = "0.9.16 "
339
+ VERSION = "0.9.17 "
333
340
classifiers = """\
334
341
Development Status :: 4 - Beta
335
342
Topic :: System :: Logging
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def randbits(nb):
94
94
except ImportError :
95
95
gzip = None
96
96
97
- __version__ = '0.9.16 '
97
+ __version__ = '0.9.17 '
98
98
__author__ = "Preston Landers <[email protected] >"
99
99
# __author__ = "Lowell Alleman"
100
100
__all__ = [
You can’t perform that action at this time.
0 commit comments