From ae3bfd1b85b6b4a3db535f69b975687c79498be4 Mon Sep 17 00:00:00 2001 From: Delgan Date: Fri, 6 Dec 2024 12:01:27 +0100 Subject: [PATCH] Bump version to 0.7.3 --- CHANGELOG.rst | 9 +++++---- loguru/__init__.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3e76adcc..78d1bfda 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_). +- Fix Cython incompatibility caused by the absence of underlying stack frames, which resulted in a ``ValueError`` during logging (`#88 `_). - Fix possible ``RuntimeError`` when removing all handlers with ``logger.remove()`` due to thread-safety issue (`#1183 `_, thanks `@jeremyk `_). - Fix ``diagnose=True`` option of exception formatting not working as expected with Python 3.13 (`#1235 `_, thanks `@etianen `_). - Fix non-standard level names not fully compatible with ``logging.Formatter()`` (`#1231 `_, thanks `@yechielb2000 `_). @@ -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 diff --git a/loguru/__init__.py b/loguru/__init__.py index 6570bb12..1bcd8244 100644 --- a/loguru/__init__.py +++ b/loguru/__init__.py @@ -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"]