Skip to content

Commit f40fa31

Browse files
committed
Bump version to 0.6.0
1 parent 6a19cb1 commit f40fa31

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
`Unreleased`_
2-
==============
1+
`0.6.0`_ (2022-01-29)
2+
=====================
33

44
- Remove internal use of ``pickle.loads()`` considered as a security vulnerability referenced as `CVE-2022-0329 https://nvd.nist.gov/vuln/detail/CVE-2022-0329`_ (`#563 <https://github.com/Delgan/loguru/issues/563>`_).
55
- Modify coroutine sink to make it discard log messages when ``loop=None`` and no event loop is running (due to internally using ``asyncio.get_running_loop()`` in place of ``asyncio.get_event_loop()``).
@@ -183,7 +183,8 @@
183183
Initial release.
184184

185185

186-
.. _Unreleased: https://github.com/delgan/loguru/compare/0.5.3...master
186+
.. _Unreleased: https://github.com/delgan/loguru/compare/0.6.0...master
187+
.. -0.6.0: https://github.com/delgan/loguru/releases/tag/0.6.0
187188
.. _0.5.3: https://github.com/delgan/loguru/releases/tag/0.5.3
188189
.. _0.5.2: https://github.com/delgan/loguru/releases/tag/0.5.2
189190
.. _0.5.1: https://github.com/delgan/loguru/releases/tag/0.5.1

loguru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from ._logger import Core as _Core
1111
from ._logger import Logger as _Logger
1212

13-
__version__ = "0.5.3"
13+
__version__ = "0.6.0"
1414

1515
__all__ = ["logger"]
1616

0 commit comments

Comments
 (0)