Skip to content

Commit

Permalink
Release 15.0.1: Restore StandardErrorHandler functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Jun 11, 2021
1 parent 8a2f2d1 commit 65bdfe9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,19 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

`Release 15.0.1`_ (2021-06-11)
------------------------------

Bug fix: Restore :class:`.StandardErrorHandler` functionality

The :class:`.StandardErrorHandler` class is responsible for dynamically
resolving (looking up the value of) sys.stderr for each logged message instead
of once when :func:`coloredlogs.install()` is called.

This was unintentionally broken by changes in `release 14.1`_.

.. _Release 15.0.1: https://github.com/xolox/python-coloredlogs/compare/15.0...15.0.1

`Release 15.0`_ (2020-12-10)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion coloredlogs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
from humanfriendly.text import format, split

# Semi-standard module versioning.
__version__ = '15.0'
__version__ = '15.0.1'

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

0 comments on commit 65bdfe9

Please sign in to comment.