Add spaces in changelog for consistency with older sections.

This commit is contained in:
Carl Meyer 2017-01-11 15:35:51 -08:00
parent 25b6e09296
commit 6a01f3389a

View file

@ -6,18 +6,23 @@ master (unreleased)
* Fix infinite recursion with multiple `MonitorField` and `defer()` or `only()`
on Django 1.10+. Thanks Romain Garrigues. Merge of GH-242, fixes GH-241.
* Fix `InheritanceManager` and `SoftDeletableManager` to respect
`self._queryset_class` instead of hardcoding the queryset class. Merge of
GH-250, fixes GH-249.
* Add mixins for `SoftDeletableQuerySet` and `SoftDeletableManager`, as stated
in the the documentation.
* Fix `SoftDeletableModel.delete()` to use the correct database connection.
Merge of GH-239.
* Added boolean keyword argument `soft` to `SoftDeletableModel.delete()` that
revert to default behavior when set to `False`. Merge of GH-240.
* Enforced default manager in `StatusModel` to avoid manager order issues
when using abstract models that redefine `objects` manager. Merge of GH-253,
fixes GH-251.
* Enforced default manager in `StatusModel` to avoid manager order issues when
using abstract models that redefine `objects` manager. Merge of GH-253, fixes
GH-251.
2.6 (2016.09.19)