From 9df8cf443ead3a6183e647fff925469a5e738af3 Mon Sep 17 00:00:00 2001 From: mark beasley Date: Wed, 29 Apr 2020 15:53:54 -0400 Subject: [PATCH] Update Changelog to add upgrade node When upgrading from old versions it's necessary to incrementally upgrade at version `3.0.1`, run migrations, and then proceed. [See here](https://github.com/etianen/django-reversion/issues/822#issuecomment-621361180) --- CHANGELOG.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 8fa76c11..06853c50 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -46,7 +46,16 @@ django-reversion changelog ------------------ - Removed squashed migrations, as they subtly messed up the Django migrations framework (@etianen). - + + To upgrade to ``>= 3.0.2`` from ``< 3.0.1``: + + .. code:: + + pip install django-reversion==3.0.1 + python manage.py migrate reversion + pip install --upgrade django-reversion + python manage.py migrate reversion + 3.0.1 - 2018-10-23 ------------------