Skip to content

Commit da44a69

Browse files
committed
Release 12.0: Improve stdlib compat, drop Python 3.4 (#64, #75, #80)
1 parent bba76ae commit da44a69

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

CHANGELOG.rst

+19-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,29 @@ to `semantic versioning`_.
1111
.. _Keep a Changelog: http://keepachangelog.com/
1212
.. _semantic versioning: http://semver.org/
1313

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+
1432
`Release 11.3`_ (2020-02-15)
1533
----------------------------
1634

1735
- 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.
1937

2038
- Consistently use ``console`` highlighting in documentation.
2139

coloredlogs/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Colored terminal output for Python's logging module.
22
#
33
# Author: Peter Odding <[email protected]>
4-
# Last Change: February 15, 2020
4+
# Last Change: February 16, 2020
55
# URL: https://coloredlogs.readthedocs.io
66

77
"""
@@ -213,7 +213,7 @@
213213
NEED_COLORAMA = WINDOWS
214214

215215
# Semi-standard module versioning.
216-
__version__ = '11.3'
216+
__version__ = '12.0'
217217

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

0 commit comments

Comments
 (0)