Skip to content

Commit 0f210bf

Browse files
Update version to 0.9.16 to fix publishing issue with wheel
1 parent 0b33930 commit 0f210bf

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.15
3+
Version: 0.9.16
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.16: Fix publishing issue with incorrect code included in the wheel
151+
Affects Python 2 mainly - see Issue #21
152+
150153
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
151154
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
152155
a log message to the output stream's encoding. I.e., by default it will filter

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.16: Fix publishing issue with incorrect code included in the wheel
94+
Affects Python 2 mainly - see Issue #21
95+
9396
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
9497
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
9598
a log message to the output stream's encoding. I.e., by default it will filter

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,9 @@
142142
143143
Change Log
144144
==========
145+
- 0.9.16: Fix publishing issue with incorrect code included in the wheel
146+
Affects Python 2 mainly - see Issue #21
147+
145148
- 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
146149
Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
147150
a log message to the output stream's encoding. I.e., by default it will filter
@@ -294,7 +297,7 @@
294297

295298
from setuptools import setup
296299

297-
VERSION = "0.9.15"
300+
VERSION = "0.9.16"
298301
classifiers = """\
299302
Development Status :: 4 - Beta
300303
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.15'
97+
__version__ = '0.9.16'
9898
__author__ = "Preston Landers <[email protected]>"
9999
# __author__ = "Lowell Alleman"
100100
__all__ = [

0 commit comments

Comments
 (0)