Skip to content

Commit ae3bfd1

Browse files
committed
Bump version to 0.7.3
1 parent ccca356 commit ae3bfd1

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
`Unreleased`_
2-
=============
1+
`0.7.3`_ (2024-12-06)
2+
=====================
33

4-
- Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a ValueError during logging (`#88 <https://github.com/Delgan/loguru/issues/88>`_).
4+
- Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a ``ValueError`` during logging (`#88 <https://github.com/Delgan/loguru/issues/88>`_).
55
- Fix possible ``RuntimeError`` when removing all handlers with ``logger.remove()`` due to thread-safety issue (`#1183 <https://github.com/Delgan/loguru/issues/1183>`_, thanks `@jeremyk <https://github.com/jeremyk>`_).
66
- Fix ``diagnose=True`` option of exception formatting not working as expected with Python 3.13 (`#1235 <https://github.com/Delgan/loguru/issues/1235>`_, thanks `@etianen <https://github.com/etianen>`_).
77
- Fix non-standard level names not fully compatible with ``logging.Formatter()`` (`#1231 <https://github.com/Delgan/loguru/issues/1231>`_, thanks `@yechielb2000 <https://github.com/yechielb2000>`_).
@@ -234,7 +234,8 @@
234234
Initial release.
235235

236236

237-
.. _Unreleased: https://github.com/delgan/loguru/compare/0.7.2...master
237+
.. _Unreleased: https://github.com/delgan/loguru/compare/0.7.3...master
238+
.. _0.7.3: https://github.com/delgan/loguru/releases/tag/0.7.3
238239
.. _0.7.2: https://github.com/delgan/loguru/releases/tag/0.7.2
239240
.. _0.7.1: https://github.com/delgan/loguru/releases/tag/0.7.1
240241
.. _0.7.0: https://github.com/delgan/loguru/releases/tag/0.7.0

loguru/__init__.py

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

14-
__version__ = "0.7.2"
14+
__version__ = "0.7.3"
1515

1616
__all__ = ["logger"]
1717

0 commit comments

Comments
 (0)