From fedcc716f272a227ae9cd02fab540dd8ec6516b8 Mon Sep 17 00:00:00 2001 From: Dave Hall Date: Sat, 12 Nov 2022 14:44:37 +0000 Subject: [PATCH] v5.0.4 --- CHANGELOG.rst | 8 +++++++- reversion/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6518849a..f0ec2814 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,12 +3,18 @@ django-reversion changelog ========================== +5.0.4 - 2022-11-12 +------------------ + +- Fix warning log formatting for failed reverts (@tony). + + 5.0.3 - 2022-10-02 ------------------ - A revision will no longer be created if a transaction is marked as rollback, as this would otherwise cause an additional database error (@proofit404). -- A warning log is noe emitted if a revert fails due to database integrity errors, making debugging the final +- A warning log is now emitted if a revert fails due to database integrity errors, making debugging the final ``RevertError`` easier. diff --git a/reversion/__init__.py b/reversion/__init__.py index 83b4eecd..c8da2bf0 100644 --- a/reversion/__init__.py +++ b/reversion/__init__.py @@ -36,4 +36,4 @@ get_registered_models, ) -__version__ = VERSION = (5, 0, 3) +__version__ = VERSION = (5, 0, 4)