diff --git a/CHANGELOG.md b/CHANGELOG.md index a55cdb12..4f6abba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## Changes +- 1.7.2 + * Fix: Aggregate data before submitting untouched form collections. + * Fix: Dispatch `Event('invalid')` for invalid fields only if form validation didn't do it during + validation. + - 1.7.1 * Stepper was not invalidated if invalid data was filled into previous form. * Richtext Area (fix #198): Styles of separator in menubar of RichtextArea were not aligned properly. diff --git a/formset/__init__.py b/formset/__init__.py index f8f16d7e..6b1b00d1 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 7, 1 +VERSION = 1, 7, 2 __version__ = '.'.join(map(str, VERSION))