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.15
3
+ Version: 0.9.16
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.16: Fix publishing issue with incorrect code included in the wheel
151
+ Affects Python 2 mainly - see Issue #21
152
+
150
153
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
151
154
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
152
155
a log message to the output stream's encoding. I.e., by default it will filter
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.16: Fix publishing issue with incorrect code included in the wheel
94
+ Affects Python 2 mainly - see Issue #21
95
+
93
96
- 0.9.15: Fix bug from last version on Python 2. (Issue #21 ) Thanks @condontrevor
94
97
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
95
98
a log message to the output stream's encoding. I.e., by default it will filter
Original file line number Diff line number Diff line change 142
142
143
143
Change Log
144
144
==========
145
+ - 0.9.16: Fix publishing issue with incorrect code included in the wheel
146
+ Affects Python 2 mainly - see Issue #21
147
+
145
148
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
146
149
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
147
150
a log message to the output stream's encoding. I.e., by default it will filter
294
297
295
298
from setuptools import setup
296
299
297
- VERSION = "0.9.15 "
300
+ VERSION = "0.9.16 "
298
301
classifiers = """\
299
302
Development Status :: 4 - Beta
300
303
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.15 '
97
+ __version__ = '0.9.16 '
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