Skip to content

Commit 7251c50

Browse files
committedApr 28, 2019
Update version to 0.9.13.
1 parent 6ea1e23 commit 7251c50

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed
 

‎PKG-INFO

+5-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.12
3+
Version: 0.9.13
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,10 @@ Description:
147147

148148
Change Log
149149
==========
150+
- 0.9.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
151+
Also should fix issue #13 with crashes related to Windows file locking.
152+
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts
153+
150154
- 0.9.12: Add umask option (thanks to @blakehilliard)
151155
This adds the ability to control the permission flags when creating log files.
152156

‎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.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
94+
Also should fix issue #13 with crashes related to Windows file locking.
95+
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts
96+
9397
- 0.9.12: Add umask option (thanks to @blakehilliard)
9498
This adds the ability to control the permission flags when creating log files.
9599

‎setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,11 @@
142142
143143
Change Log
144144
==========
145+
146+
- 0.9.13: Fixes Crashes with ValueError: I/O operation on closed file (issue #16)
147+
Also should fix issue #13 with crashes related to Windows file locking.
148+
Big thanks to @terencehonles, @nsmcan, @wkoot, @dismine for doing the hard parts
149+
145150
- 0.9.12: Add umask option (thanks to @blakehilliard)
146151
This adds the ability to control the permission flags when creating log files.
147152
@@ -280,7 +285,7 @@
280285

281286
from setuptools import setup
282287

283-
VERSION = "0.9.12"
288+
VERSION = "0.9.13"
284289
classifiers = """\
285290
Development Status :: 4 - Beta
286291
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.12'
97+
__version__ = '0.9.13'
9898
__author__ = "Preston Landers <planders@gmail.com>"
9999
# __author__ = "Lowell Alleman"
100100
__all__ = [

0 commit comments

Comments
 (0)
Please sign in to comment.