From 7e825a1c09a7ff1683d97e6b4840f1dcdd3c72f0 Mon Sep 17 00:00:00 2001 From: robertgsinger Date: Wed, 5 Aug 2020 20:48:27 -0500 Subject: [PATCH] Updates version and release notes --- README.md | 3 +++ django_lifecycle/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9510d07..606788f 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,9 @@ Instead of overriding `save` and `__init__` in a clunky way that hurts readabili # Changelog +## 0.7.7 (August 2020) +* Fixes issue with `GenericForeignKey`. Thanks @bmbouter! + ## 0.7.6 (May 2020) * Updates to use constants for hook names; updates docs to indicate Python 3.8/Django 3.x support. Thanks @thejoeejoee! diff --git a/django_lifecycle/__init__.py b/django_lifecycle/__init__.py index 4e7f931..b2f8cad 100644 --- a/django_lifecycle/__init__.py +++ b/django_lifecycle/__init__.py @@ -1,6 +1,6 @@ from .django_info import IS_GTE_1_POINT_9 -__version__ = "0.7.6" +__version__ = "0.7.7" __author__ = "Robert Singer" __author_email__ = "robertgsinger@gmail.com"