File tree 2 files changed +21
-3
lines changed
2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,29 @@ to `semantic versioning`_.
11
11
.. _Keep a Changelog : http://keepachangelog.com/
12
12
.. _semantic versioning : http://semver.org/
13
13
14
+ `Release 12.0 `_ (2020-02-16)
15
+ ----------------------------
16
+
17
+ Two backwards incompatible changes prompted another major version bump:
18
+
19
+ - Merged pull request `#80 `_ that drops support for Python 3.4 which
20
+ has gone end-of-life and now represents less than 1% of PyPI downloads.
21
+
22
+ - Improved compatibility with the Python standard library by changing
23
+ the order of positional arguments received by the initializer of the
24
+ :class: `~coloredlogs.ColoredFormatter ` class (as suggested in `#64 `_
25
+ and `#75 `_).
26
+
27
+ .. _Release 12.0 : https://github.com/xolox/python-coloredlogs/compare/11.3...12.0
28
+ .. _#80 : https://github.com/xolox/python-coloredlogs/pull/80
29
+ .. _#64 : https://github.com/xolox/python-coloredlogs/issues/64
30
+ .. _#75 : https://github.com/xolox/python-coloredlogs/issues/75
31
+
14
32
`Release 11.3 `_ (2020-02-15)
15
33
----------------------------
16
34
17
35
- Add support for the ``%(username)s `` field (requested in `#76 `_) and properly
18
- document the supported custom fields in the readme .
36
+ document supported custom fields.
19
37
20
38
- Consistently use ``console `` highlighting in documentation.
21
39
Original file line number Diff line number Diff line change 1
1
# Colored terminal output for Python's logging module.
2
2
#
3
3
# Author: Peter Odding <[email protected] >
4
- # Last Change: February 15 , 2020
4
+ # Last Change: February 16 , 2020
5
5
# URL: https://coloredlogs.readthedocs.io
6
6
7
7
"""
213
213
NEED_COLORAMA = WINDOWS
214
214
215
215
# Semi-standard module versioning.
216
- __version__ = '11.3 '
216
+ __version__ = '12.0 '
217
217
218
218
DEFAULT_LOG_LEVEL = logging .INFO
219
219
"""The default log level for :mod:`coloredlogs` (:data:`logging.INFO`)."""
You can’t perform that action at this time.
0 commit comments