Skip to content

Commit

Permalink
Bump version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgan committed Dec 6, 2024
1 parent ccca356 commit ae3bfd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
`Unreleased`_
=============
`0.7.3`_ (2024-12-06)
=====================

- 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>`_).
- 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>`_).
- 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>`_).
- 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>`_).
- 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>`_).
Expand Down Expand Up @@ -234,7 +234,8 @@
Initial release.


.. _Unreleased: https://github.com/delgan/loguru/compare/0.7.2...master
.. _Unreleased: https://github.com/delgan/loguru/compare/0.7.3...master
.. _0.7.3: https://github.com/delgan/loguru/releases/tag/0.7.3
.. _0.7.2: https://github.com/delgan/loguru/releases/tag/0.7.2
.. _0.7.1: https://github.com/delgan/loguru/releases/tag/0.7.1
.. _0.7.0: https://github.com/delgan/loguru/releases/tag/0.7.0
Expand Down
2 changes: 1 addition & 1 deletion loguru/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ._logger import Core as _Core
from ._logger import Logger as _Logger

__version__ = "0.7.2"
__version__ = "0.7.3"

__all__ = ["logger"]

Expand Down

0 comments on commit ae3bfd1

Please sign in to comment.