Skip to content

Commit 2624948

Browse files
Version 0.9.18 - remove ez_setup
1 parent 86daf35 commit 2624948

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-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.17
3+
Version: 0.9.18
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,8 @@ Description:
195195

196196
Change Log
197197
==========
198+
- 0.9.18: Remove ez_setup from the setup.py
199+
198200
- 0.9.17: Contains the following fixes:
199201
* Catch exceptions when unlocking the lock.
200202
* Clarify documentation, esp. with use of multiprocessing

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ instances, but does not protect against outside processes (or different Python l
176176
file handlers) from writing to a log file in use.
177177

178178
## Change Log ##
179+
- 0.9.18: Remove ez_setup from the setup.py
179180

180181
- 0.9.17: Contains the following fixes:
181182
* Catch exceptions when unlocking the lock.

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,8 @@
174174
175175
Change Log
176176
==========
177+
- 0.9.18: Remove ez_setup from the setup.py
178+
177179
- 0.9.17: Contains the following fixes:
178180
* Catch exceptions when unlocking the lock.
179181
* Clarify documentation, esp. with use of multiprocessing
@@ -332,7 +334,7 @@
332334

333335
from setuptools import setup
334336

335-
VERSION = "0.9.17"
337+
VERSION = "0.9.18"
336338
classifiers = """\
337339
Development Status :: 4 - Beta
338340
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.17'
97+
__version__ = '0.9.18'
9898
__author__ = "Preston Landers <[email protected]>"
9999
# __author__ = "Lowell Alleman"
100100
__all__ = [

0 commit comments

Comments
 (0)