Skip to content

Commit

Permalink
Release 14.1: Bug fixes for force enable / auto detect disable (#84 and
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Dec 9, 2020
1 parent 066eb01 commit 5924f77
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -11,6 +11,26 @@ to `semantic versioning`_.
.. _Keep a Changelog: http://keepachangelog.com/
.. _semantic versioning: http://semver.org/

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

**Bug fixes:**

- Don't allow interactive terminal detection to disable colored text when
colored text is being forced by the caller (reported in issue `#84`_).

- Automatically disable colored text when logging output is being redirected to
a file in such a way that it actually works 😬 (reported in issue `#100`_).

**Other changes:**

- Start testing on PyPy 3 (because why not?)

.. _Release 14.1: https://github.com/xolox/python-coloredlogs/compare/14.0...14.1
.. _#84: https://github.com/xolox/python-coloredlogs/issues/84
.. _#100: https://github.com/xolox/python-coloredlogs/issues/100


`Release 14.0`_ (2020-02-16)
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion coloredlogs/__init__.py
Expand Up @@ -207,7 +207,7 @@
from humanfriendly.text import format, split

# Semi-standard module versioning.
__version__ = '14.0'
__version__ = '14.1'

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

0 comments on commit 5924f77

Please sign in to comment.