From ac3ff71f116ad4b68e05c476dca760fd6d3c255b Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Thu, 10 Mar 2022 13:11:05 +0000 Subject: [PATCH] inherit_kwargs moved to 6.0 --- CHANGELOG.txt | 7 +++++-- setup.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f377a93..948f6f2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,13 +1,16 @@ Changelog ========= -5.3 (xx.xx.xxxx) - IN DEVELOPMENT +6.0 (xx.xx.xxxx) - IN DEVELOPMENT +~~~~~~~~~~~~~~~~ +* Add `inherit_kwargs` attribute to ClusterForm child formsets (Matt Westcott) + +5.3 (10.03.2022) ~~~~~~~~~~~~~~~~ * Avoid accessing live queryset on unsaved instances, for preliminary Django 4.1 compatibility (Matt Westcott) * Support traversing one-to-one and many-to-one relations in `filter` / `order_by` lookups (Andy Babic) * Implement `values()` method on FakeQuerySet (Andy Babic) * Allow `values()` and `values_list()` to be chained with other queryset modifiers (Andy Babic) -* Add `inherit_kwargs` attribute to ClusterForm child formsets (Matt Westcott) * Fix: Fix HTML escaping behaviour on `ClusterForm.as_p()` (Matt Westcott) * Fix: Match standard behaviour queryset of returning foreign keys as IDs in `values_list` (Andy Babic) diff --git a/setup.py b/setup.py index 9131532..be72afc 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='django-modelcluster', - version='5.2', + version='6.0', description="Django extension to allow working with 'clusters' of models as a single unit, independently of the database", author='Matthew Westcott', author_email='matthew.westcott@torchbox.com',