Skip to content

Commit

Permalink
Update version to 0.9.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Preston-Landers committed Sep 1, 2020
1 parent 8a271a5 commit 41242d6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
9 changes: 8 additions & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: concurrent-log-handler
Version: 0.9.16
Version: 0.9.17
Summary: RotatingFileHandler replacement with concurrency, gzip and Windows support
Home-page: https://github.com/Preston-Landers/concurrent_log_handler
Author: Preston Landers
Expand Down Expand Up @@ -195,6 +195,13 @@ Description:

Change Log
==========
- 0.9.17: Contains the following fixes:
* Catch exceptions when unlocking the lock.
* Clarify documentation, esp. with use of multiprocessing
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)

NOTE: the next release will likely be a 1.0 release candidate.

- 0.9.16: Fix publishing issue with incorrect code included in the wheel
Affects Python 2 mainly - see Issue #21

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,13 @@ file handlers) from writing to a log file in use.

## Change Log ##

- 0.9.17: Contains the following fixes:
* Catch exceptions when unlocking the lock.
* Clarify documentation, esp. with use of multiprocessing
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)

NOTE: the next release will likely be a 1.0 release candidate.

- 0.9.16: Fix publishing issue with incorrect code included in the wheel
Affects Python 2 mainly - see Issue #21

Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,13 @@
Change Log
==========
- 0.9.17: Contains the following fixes:
* Catch exceptions when unlocking the lock.
* Clarify documentation, esp. with use of multiprocessing
* In Python 2, don't request/allow portalocker 2.0 which won't work. (Require portalocker<=1.7.1)
NOTE: the next release will likely be a 1.0 release candidate.
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
Affects Python 2 mainly - see Issue #21
Expand Down Expand Up @@ -329,7 +336,7 @@

from setuptools import setup

VERSION = "0.9.16"
VERSION = "0.9.17"
classifiers = """\
Development Status :: 4 - Beta
Topic :: System :: Logging
Expand Down
2 changes: 1 addition & 1 deletion src/concurrent_log_handler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def randbits(nb):
except ImportError:
gzip = None

__version__ = '0.9.16'
__version__ = '0.9.17'
__author__ = "Preston Landers <[email protected]>"
# __author__ = "Lowell Alleman"
__all__ = [
Expand Down

0 comments on commit 41242d6

Please sign in to comment.