Skip to content

Commit 65bdfe9

Browse files
committed
Release 15.0.1: Restore StandardErrorHandler functionality
1 parent 8a2f2d1 commit 65bdfe9

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,19 @@ to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

14+
`Release 15.0.1`_ (2021-06-11)
15+
------------------------------
16+
17+
Bug fix: Restore :class:`.StandardErrorHandler` functionality
18+
19+
The :class:`.StandardErrorHandler` class is responsible for dynamically
20+
resolving (looking up the value of) sys.stderr for each logged message instead
21+
of once when :func:`coloredlogs.install()` is called.
22+
23+
This was unintentionally broken by changes in `release 14.1`_.
24+
25+
.. _Release 15.0.1: https://github.com/xolox/python-coloredlogs/compare/15.0...15.0.1
26+
1427
`Release 15.0`_ (2020-12-10)
1528
----------------------------
1629

coloredlogs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
from humanfriendly.text import format, split
215215

216216
# Semi-standard module versioning.
217-
__version__ = '15.0'
217+
__version__ = '15.0.1'
218218

219219
DEFAULT_LOG_LEVEL = logging.INFO
220220
"""The default log level for :mod:`coloredlogs` (:data:`logging.INFO`)."""

0 commit comments

Comments
 (0)