From 202f7ce557961ca9251a55358737012a95ed5430 Mon Sep 17 00:00:00 2001 From: Jacob Rief Date: Wed, 29 May 2024 08:43:36 +0200 Subject: [PATCH] Bump to version 1.4.5 --- CHANGELOG.md | 8 ++++++++ formset/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1be34db..fee261b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Changes +1.4.5 + * Fix: When submitting a form with a `FileField`, the `UploadedFileInput` widget returns ``None`` + to signalize that nothing changed. Then however, the `clean()`-method did not access the initial + value of the field. This is fixed now. + * Fix: Using the value `cleaned_data` from a FormCollection, always started to validate and then + returned values. Now, one must explicitly call `is_valid()`, otherwise an `AttributeError` is + raised. + 1.4.4 * Fix: In widget `PhoneNumberInput`, the country lookup field did not behave es expected when using the up- or down-arrow keys to navigate through the list of countries. diff --git a/formset/__init__.py b/formset/__init__.py index fa75bf94..a1658ee2 100644 --- a/formset/__init__.py +++ b/formset/__init__.py @@ -1,2 +1,2 @@ -VERSION = 1, 4, 4 +VERSION = 1, 4, 5 __version__ = '.'.join(map(str, VERSION))