Skip to content

Commit 7d05ed9

Browse files
Update version to 0.9.10.
1 parent 8ade670 commit 7d05ed9

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-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.9
3+
Version: 0.9.10
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.10: Fix inadvertent lock sharing when forking
151+
Thanks to @eriktews for this fix
152+
150153
- 0.9.9: Fix Python 2 compatibility broken in last release
151154

152155
- 0.9.8: Bug fixes and permission features

README.md

+3
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.10: Fix inadvertent lock sharing when forking
94+
Thanks to @eriktews for this fix
95+
9396
- 0.9.9: Fix Python 2 compatibility broken in last release
9497

9598
- 0.9.8: Bug fixes and permission features

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@
142142

143143
Change Log
144144
==========
145+
- 0.9.10: Fix inadvertent lock sharing when forking
146+
Thanks to @eriktews for this fix
147+
145148
- 0.9.9: Fix Python 2 compatibility broken in last release
146149

147150
- 0.9.8: Bug fixes and permission features
@@ -272,7 +275,7 @@
272275

273276
from setuptools import setup
274277

275-
VERSION = "0.9.9"
278+
VERSION = "0.9.10"
276279
classifiers = """\
277280
Development Status :: 4 - Beta
278281
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.9'
95+
__version__ = '0.9.10'
9696
__author__ = "Preston Landers <[email protected]>"
9797
# __author__ = "Lowell Alleman"
9898
__all__ = [

0 commit comments

Comments
 (0)