Skip to content

Commit 41242d6

Browse files
Update version to 0.9.17
1 parent 8a271a5 commit 41242d6

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

PKG-INFO

+8-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.16
3+
Version: 0.9.17
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
@@ -195,6 +195,13 @@ Description:
195195

196196
Change Log
197197
==========
198+
- 0.9.17: Contains the following fixes:
199+
* Catch exceptions when unlocking the lock.
200+
* Clarify documentation, esp. with use of multiprocessing
201+
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
202+
203+
NOTE: the next release will likely be a 1.0 release candidate.
204+
198205
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
199206
Affects Python 2 mainly - see Issue #21
200207

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,13 @@ file handlers) from writing to a log file in use.
177177

178178
## Change Log ##
179179

180+
- 0.9.17: Contains the following fixes:
181+
* Catch exceptions when unlocking the lock.
182+
* Clarify documentation, esp. with use of multiprocessing
183+
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
184+
185+
NOTE: the next release will likely be a 1.0 release candidate.
186+
180187
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
181188
Affects Python 2 mainly - see Issue #21
182189

setup.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,13 @@
174174
175175
Change Log
176176
==========
177+
- 0.9.17: Contains the following fixes:
178+
* Catch exceptions when unlocking the lock.
179+
* Clarify documentation, esp. with use of multiprocessing
180+
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
181+
182+
NOTE: the next release will likely be a 1.0 release candidate.
183+
177184
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
178185
Affects Python 2 mainly - see Issue #21
179186
@@ -329,7 +336,7 @@
329336

330337
from setuptools import setup
331338

332-
VERSION = "0.9.16"
339+
VERSION = "0.9.17"
333340
classifiers = """\
334341
Development Status :: 4 - Beta
335342
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.16'
97+
__version__ = '0.9.17'
9898
__author__ = "Preston Landers <[email protected]>"
9999
# __author__ = "Lowell Alleman"
100100
__all__ = [

0 commit comments

Comments
 (0)