Skip to content

Commit 8f2829d

Browse files
committed
Release 11.2: Add support for Python 3.8 (#79)
1 parent e969d81 commit 8f2829d

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.rst

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

14+
`Release 11.2`_ (2020-02-15)
15+
----------------------------
16+
17+
Merge pull request `#79`_ which adds support for Python 3.8.
18+
19+
.. _Release 11.2: https://github.com/xolox/python-coloredlogs/compare/11.1...11.2
20+
.. _#79: https://github.com/xolox/python-coloredlogs/pull/79
21+
1422
`Release 11.1`_ (2020-02-15)
1523
----------------------------
1624

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ The `coloredlogs` package enables colored terminal output for Python's logging_
1111
module. The ColoredFormatter_ class inherits from `logging.Formatter`_ and uses
1212
`ANSI escape sequences`_ to render your logging messages in color. It uses only
1313
standard colors so it should work on any UNIX terminal. It's currently tested
14-
on Python 2.7, 3.4+ and PyPy. On Windows `coloredlogs`
15-
automatically pulls in Colorama_ as a dependency and enables ANSI escape
16-
sequence translation using Colorama. Here is a screen shot of the demo that is
17-
printed when the command ``coloredlogs --demo`` is executed:
14+
on Python 2.7, 3.4+ and PyPy. On Windows `coloredlogs` automatically pulls in
15+
Colorama_ as a dependency and enables ANSI escape sequence translation using
16+
Colorama. Here is a screen shot of the demo that is printed when the command
17+
``coloredlogs --demo`` is executed:
1818

1919
.. image:: https://coloredlogs.readthedocs.io/en/latest/_images/defaults.png
2020

coloredlogs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@
213213
NEED_COLORAMA = WINDOWS
214214

215215
# Semi-standard module versioning.
216-
__version__ = '11.1'
216+
__version__ = '11.2'
217217

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

0 commit comments

Comments
 (0)