From 6a01f3389ae4ccba2e3cde86c55eefe4409236cb Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Wed, 11 Jan 2017 15:35:51 -0800 Subject: [PATCH] Add spaces in changelog for consistency with older sections. --- CHANGES.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index fe88873f..6606da19 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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)