Skip to content

Commit 796ff82

Browse files
Update version to 0.9.11
1 parent ec43885 commit 796ff82

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

PKG-INFO

+3-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.10
3+
Version: 0.9.11
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,8 @@ Description:
147147

148148
Change Log
149149
==========
150+
- 0.9.11: Fix issues with gzip compression option (use buffering)
151+
150152
- 0.9.10: Fix inadvertent lock sharing when forking
151153
Thanks to @eriktews for this fix
152154

README.md

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

9191
## Change Log ##
9292

93+
- 0.9.11: Fix issues with gzip compression option (use buffering)
94+
9395
- 0.9.10: Fix inadvertent lock sharing when forking
9496
Thanks to @eriktews for this fix
9597

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@
142142
143143
Change Log
144144
==========
145+
- 0.9.11: Fix issues with gzip compression option (use buffering)
146+
145147
- 0.9.10: Fix inadvertent lock sharing when forking
146148
Thanks to @eriktews for this fix
147149
@@ -275,7 +277,7 @@
275277

276278
from setuptools import setup
277279

278-
VERSION = "0.9.10"
280+
VERSION = "0.9.11"
279281
classifiers = """\
280282
Development Status :: 4 - Beta
281283
Topic :: System :: Logging

src/concurrent_log_handler/__init__.py

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

95-
__version__ = '0.9.10'
95+
__version__ = '0.9.11'
9696
__author__ = "Preston Landers <[email protected]>"
9797
# __author__ = "Lowell Alleman"
9898
__all__ = [

0 commit comments

Comments
 (0)