File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed
Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ The `coloredlogs` package enables colored terminal output for Python's logging_
1111module. The ColoredFormatter _ class inherits from `logging.Formatter `_ and uses
1212`ANSI escape sequences `_ to render your logging messages in color. It uses only
1313standard 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
Original file line number Diff line number Diff line change 213213NEED_COLORAMA = WINDOWS
214214
215215# Semi-standard module versioning.
216- __version__ = '11.1 '
216+ __version__ = '11.2 '
217217
218218DEFAULT_LOG_LEVEL = logging .INFO
219219"""The default log level for :mod:`coloredlogs` (:data:`logging.INFO`)."""
You can’t perform that action at this time.
0 commit comments