docs: Fix Markdown formatting of CHANGES

This commit is contained in:
Matthieu Rigal 2021-10-11 09:59:26 +02:00
parent b65a2ee41d
commit 5ca515acc7
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
dist/* dist/*
build
django_model_utils.egg-info/* django_model_utils.egg-info/*
HGREV HGREV
.coverage .coverage

View file

@ -5,7 +5,7 @@ Unreleased
---------- ----------
4.2.0 (2021-10-10) 4.2.0 (2021-10-11)
------------------ ------------------
- Add support for `Django 3.2` - Add support for `Django 3.2`
@ -27,6 +27,7 @@ Unreleased
------------------ ------------------
**Breaking changes:** **Breaking changes:**
- `FieldTracker` now marks fields as not changed after `refresh_from_db` - `FieldTracker` now marks fields as not changed after `refresh_from_db`
respecting `fields` argument (GH-#404) respecting `fields` argument (GH-#404)
- `FieldTracker` now respects `update_fields` changed in overridden `save()` - `FieldTracker` now respects `update_fields` changed in overridden `save()`
@ -36,6 +37,7 @@ Unreleased
methods (GH-#404) methods (GH-#404)
**Other changes:** **Other changes:**
- Update InheritanceQuerySetMixin to avoid querying too much tables - Update InheritanceQuerySetMixin to avoid querying too much tables
- TimeStampedModel now automatically adds 'modified' field as an update_fields - TimeStampedModel now automatically adds 'modified' field as an update_fields
parameter even if it is forgotten while using save() parameter even if it is forgotten while using save()