Skip to content

Commit 457e314

Browse files
Update version to 0.9.15
1 parent ff5d34b commit 457e314

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

PKG-INFO

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.1
22
Name: concurrent-log-handler
3-
Version: 0.9.14
3+
Version: 0.9.15
44
Summary: RotatingFileHandler replacement with concurrency, gzip and Windows support
55
Home-page: https://github.com/Preston-Landers/concurrent_log_handler
66
Author: Preston Landers
@@ -147,6 +147,11 @@ Description:
147147

148148
Change Log
149149
==========
150+
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
151+
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
152+
a log message to the output stream's encoding. I.e., by default it will filter
153+
out (remove) any characters in a log message which cannot be converted to the
154+
output logfile's encoding.
150155

151156
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
152157
Added newline and terminator kwargs to allow customizing line ending behavior.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ restart your app service so that all processes are using the same settings at th
9090

9191
## Change Log ##
9292

93+
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
94+
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
95+
a log message to the output stream's encoding. I.e., by default it will filter
96+
out (remove) any characters in a log message which cannot be converted to the
97+
output logfile's encoding.
98+
9399
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
94100
Added newline and terminator kwargs to allow customizing line ending behavior.
95101
Thanks to @vashek

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@
142142
143143
Change Log
144144
==========
145+
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
146+
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
147+
a log message to the output stream's encoding. I.e., by default it will filter
148+
out (remove) any characters in a log message which cannot be converted to the
149+
output logfile's encoding.
145150
146151
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
147152
Added newline and terminator kwargs to allow customizing line ending behavior.
@@ -289,7 +294,7 @@
289294

290295
from setuptools import setup
291296

292-
VERSION = "0.9.14"
297+
VERSION = "0.9.15"
293298
classifiers = """\
294299
Development Status :: 4 - Beta
295300
Topic :: System :: Logging

src/concurrent_log_handler/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def randbits(nb):
9494
except ImportError:
9595
gzip = None
9696

97-
__version__ = '0.9.14'
97+
__version__ = '0.9.15'
9898
__author__ = "Preston Landers <[email protected]>"
9999
# __author__ = "Lowell Alleman"
100100
__all__ = [

0 commit comments

Comments
 (0)