From 1fa7775bbbc4bad3d1ba63685d9ede20cb923eb1 Mon Sep 17 00:00:00 2001 From: Enrique Soria Date: Fri, 7 Jun 2024 12:30:47 +0200 Subject: [PATCH] chore: Prepare release 1.2.4 --- CHANGELOG.md | 5 +++++ django_lifecycle/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 713aed6..9b77574 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +# 1.2.4 (June 2024) + - Revert deepcopying model state to copy + - Update the initial state after calling `refresh_from_db` on the model instance. Thanks, @partizaans! + - Refactor: Extract model state methods + # 1.2.3 (February 2024) - Fix imports diff --git a/django_lifecycle/__init__.py b/django_lifecycle/__init__.py index af7fb14..e9fee2c 100644 --- a/django_lifecycle/__init__.py +++ b/django_lifecycle/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.2.3" +__version__ = "1.2.4" __author__ = "Robert Singer" __author_email__ = "robertgsinger@gmail.com"