Skip to content

Commit 47aafc0

Browse files
Update version to 0.9.12
1 parent c165e54 commit 47aafc0

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

PKG-INFO

+4-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.11
3+
Version: 0.9.12
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,9 @@ Description:
147147

148148
Change Log
149149
==========
150+
- 0.9.12: Add umask option (thanks to @blakehilliard)
151+
This adds the ability to control the permission flags when creating log files.
152+
150153
- 0.9.11: Fix issues with gzip compression option (use buffering)
151154

152155
- 0.9.10: Fix inadvertent lock sharing when forking

README.md

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

9191
## Change Log ##
9292

93+
- 0.9.12: Add umask option (thanks to @blakehilliard)
94+
This adds the ability to control the permission flags when creating log files.
95+
9396
- 0.9.11: Fix issues with gzip compression option (use buffering)
9497

9598
- 0.9.10: Fix inadvertent lock sharing when forking
@@ -136,3 +139,6 @@ https://github.com/wcooley
136139

137140
https://github.com/greenfrog82
138141

142+
https://github.com/blakehilliard
143+
144+
https://github.com/eriktews

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@
142142
143143
Change Log
144144
==========
145+
- 0.9.12: Add umask option (thanks to @blakehilliard)
146+
This adds the ability to control the permission flags when creating log files.
147+
145148
- 0.9.11: Fix issues with gzip compression option (use buffering)
146149
147150
- 0.9.10: Fix inadvertent lock sharing when forking
@@ -277,7 +280,7 @@
277280

278281
from setuptools import setup
279282

280-
VERSION = "0.9.11"
283+
VERSION = "0.9.12"
281284
classifiers = """\
282285
Development Status :: 4 - Beta
283286
Topic :: System :: Logging

src/concurrent_log_handler/__init__.py

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

96-
__version__ = '0.9.11'
96+
__version__ = '0.9.12'
9797
__author__ = "Preston Landers <[email protected]>"
9898
# __author__ = "Lowell Alleman"
9999
__all__ = [

0 commit comments

Comments
 (0)