Skip to content

Commit 8e0b8e2

Browse files
Update version to 0.9.14.
1 parent 9cabd0e commit 8e0b8e2

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-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.13
3+
Version: 0.9.14
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+
151+
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
152+
Added newline and terminator kwargs to allow customizing line ending behavior.
153+
Thanks to @vashek
154+
150155
- 0.9.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
151156
Also should fix issue #13 with crashes related to Windows file locking.
152157
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts

README.md

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

9191
## Change Log ##
9292

93+
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
94+
Added newline and terminator kwargs to allow customizing line ending behavior.
95+
Thanks to @vashek
96+
9397
- 0.9.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
9498
Also should fix issue #13 with crashes related to Windows file locking.
9599
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@
143143
Change Log
144144
==========
145145
146+
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
147+
Added newline and terminator kwargs to allow customizing line ending behavior.
148+
Thanks to @vashek
149+
146150
- 0.9.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
147151
Also should fix issue #13 with crashes related to Windows file locking.
148152
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts
@@ -285,7 +289,7 @@
285289

286290
from setuptools import setup
287291

288-
VERSION = "0.9.13"
292+
VERSION = "0.9.14"
289293
classifiers = """\
290294
Development Status :: 4 - Beta
291295
Topic :: System :: Logging

src/concurrent_log_handler/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def randbits(nb):
9090
except ImportError:
9191
gzip = None
9292

93-
__version__ = '0.9.13'
93+
__version__ = '0.9.14'
9494
__author__ = "Preston Landers <[email protected]>"
9595
# __author__ = "Lowell Alleman"
9696
__all__ = [

0 commit comments

Comments
 (0)