Skip to content

Commit

Permalink
Release 8.0: Set default date format in formatTime()
Browse files Browse the repository at this point in the history
I decided to bump the major version number because this change is
technically backwards incompatible, even though it concerns a minor
detail (datefmt being set to its default value in the initializer).

Then again, this change does improve compatibility with the behavior
of the logging.Formatter class in Python's standard library,
so there's that :-).
  • Loading branch information
xolox committed Jan 5, 2018
1 parent a3da004 commit b97b94c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coloredlogs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
NEED_COLORAMA = WINDOWS

# Semi-standard module versioning.
__version__ = '7.3.3'
__version__ = '8.0'

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

0 comments on commit b97b94c

Please sign in to comment.